MCP Server for skill4agent - Search and install AI skills via Model Context Protocol
SaferSkills independently audited skill4agent-mcp-server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
中文 | English
MCP (Model Context Protocol) Server for skill4agent - Search, view, and install AI skills in AI conversations.
Provides the following capabilities through the MCP protocol:
npm install -g @skill4agent/mcp-serverOr run directly with npx:
npx @skill4agent/mcp-serverAdd the following to your Claude Desktop configuration file:
{
"mcpServers": {
"skill4agent": {
"command": "npx",
"args": ["-y", "@skill4agent/mcp-server"]
}
}
}To use a custom API endpoint, add the env configuration:
{
"mcpServers": {
"skill4agent": {
"command": "npx",
"args": ["-y", "@skill4agent/mcp-server"],
"env": {
"SKILL4AGENT_API_URL": "https://your-custom-domain.com/api/mcp"
}
}
}
}Search for AI skills.
Parameters:
keyword (required): Search keywordcategories (optional): Category filter, supports both English and Chineselimit (optional): Limit the number of results, default is 10, maximum is 100Example:
{
"keyword": "React",
"categories": ["Frontend Development"],
"limit": 5
}Get detailed information about a specific skill.
Parameters:
skillId (required): Skill ID, obtained from the search_skills tool resultsExample:
{
"skillId": "frontend-design--anthropics-skills"
}Get installation information for a skill.
Parameters:
skillId (required): Skill IDExample:
{
"skillId": "frontend-design--anthropics-skills"
}| Variable | Description | Default |
|---|---|---|
SKILL4AGENT_API_URL | skill4agent API endpoint | https://skill4agent.com/api/mcp |
# Install dependencies
npm install
# Build
npm run build
# Development mode (hot reload)
npm run dev
# Run directly
node dist/index.js@skill4agent/mcp-server/
├── src/
│ ├── index.ts # Entry point
│ ├── server.ts # MCP Server main logic
│ ├── api/
│ │ └── client.ts # API client
│ └── tools/
│ ├── search.ts # search_skills tool
│ ├── detail.ts # get_skill tool
│ └── install.ts # install_skill tool
├── package.json
├── tsconfig.json
└── README.mdMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.