Skip to main content

Skillsmith Documentation

Skillsmith is an MCP server for agent skill discovery, installation, and management. It helps you find, evaluate, and install skills for your development environment.

What is Skillsmith?

Skillsmith provides a comprehensive toolset for managing agent skills. Whether you're looking for testing utilities, git workflow helpers, or specialized development tools, Skillsmith makes it easy to discover and install the skills you need.

Key Features

  • Skill Discovery - Search and browse thousands of community skills
  • Smart Recommendations - Get personalized skill suggestions based on your project
  • Trust Verification - Know which skills are official, verified, curated, community, or unverified
  • Easy Installation - Install skills with a single command
  • Skill Comparison - Compare similar skills side-by-side

Quick Start

Get started with Skillsmith in minutes:

1. Configure the MCP Server

Add Skillsmith to your Claude settings file (~/.claude/settings.json):

{
  "mcpServers": {
    "skillsmith": {
      "command": "npx",
      "args": ["-y", "@skillsmith/mcp-server"]
    }
  }
}

2. Configure Your API Key (Optional)

For usage tracking and higher rate limits, add your API key. Create ~/.skillsmith/config.json:

mkdir -p ~/.skillsmith && cat > ~/.skillsmith/config.json << 'EOF'
{
  "apiKey": "sk_live_your_key_here"
}
EOF

Get your API key from your Account Dashboard after signing up.

3. Start Using Skillsmith

Once configured, ask your assistant to find and install skills:

"Search for testing skills"
"Find verified skills for git workflows"
"Install the commit skill"
"Recommend skills for my React project"

Documentation Sections

CLI or MCP?

Skillsmith offers two interfaces: a CLI for shell workflows, CI/CD pipelines, and skill authoring, and an MCP server for interactive use inside Claude Code with richer context and recommendations. Use whichever fits your workflow — they share the same registry and installed skills.

TaskCLIMCP
Search for skillsskillsmith search "testing"search tool
Install a skillskillsmith install author/nameinstall_skill tool
Remove a skillskillsmith remove nameuninstall_skill tool
Get skill detailsskillsmith info author/nameget_skill tool
Compare skillsskill_compare tool
Audit a skill (security advisories)skillsmith audit advisories nameskill_audit tool
Audit local inventory for namespace collisions (Team+)skillsmith audit collisionsskill_inventory_audit tool
Create a skillskillsmith create name
Validate a skillskillsmith author validate .skill_validate tool

Trust Tiers

Skillsmith categorizes skills by trust level to help you make informed decisions:

TierDescription
officialOfficial or partner skills with full security review
verifiedPublisher verified, quality checked
curatedGitHub-verified vendor org or manually curated
communityBasic scan passed, metadata present
unverifiedNo verification performed, review before installing

Need Help?

If you run into issues or have questions, check out ourGitHub Issuesor join the community discussion.