Getting Started
Get Skillsmith up and running in your development environment in just a few minutes.
Prerequisites
Before you begin, ensure you have:
- An MCP-compatible AI assistant installed and configured
- Node.js 18+ (for npx commands)
- npm or a compatible package manager
Installation
There are two ways to use Skillsmith: as an MCP server (recommended) or via the CLI.
Option 1: MCP Server (Recommended)
The MCP server integrates with any MCP-compatible client, allowing you to search and install skills through natural language.
Add this to your MCP client configuration:
Add this MCP server to my settings.json:
{
"mcpServers": {
"skillsmith": {
"command": "npx",
"args": ["-y", "@skillsmith/mcp-server"]
}
}
}
After adding the configuration to your ~/.claude/settings.json,
restart your MCP client to load the Skillsmith server.
Option 2: CLI Installation
For command-line access, install the CLI globally:
npm install -g @skillsmith/cli
# Or use npx for one-off commands
npx @skillsmith/cli search testing Verify Installation
MCP Server Verification
Ask your assistant to verify the Skillsmith server is running:
"List available MCP tools"
# You should see skillsmith tools like search, install, recommend CLI Verification
Check the CLI is installed correctly:
skillsmith --version
# Output: @skillsmith/cli v1.x.x
skillsmith --help
# Shows available commands API Key Configuration
The MCP server works out of the box without configuration, providing community-tier access (30 requests/minute). For higher rate limits and usage tracking on your account dashboard, configure your personal API key.
Why Configure an API Key?
Without a personal API key, the MCP server uses a shared anonymous key. Your requests will work but won't appear on your Account Dashboard. To track usage and get tier-based rate limits, add your API key to the MCP server configuration.
Get and Configure Your API Key
Option 1: CLI Login (Recommended — one command)
npm install -g @skillsmith/cli
skillsmith login This opens www.skillsmith.app/account/cli-token in your browser. Generate a key, copy it, and paste it when prompted. The key is stored securely in your OS keyring (macOS Keychain, GNOME Keyring, Windows Credential Store).
For CI/headless environments, use SKILLSMITH_API_KEY as an environment variable instead.
Option 2: Manual Config File
- Create a free account (GitHub OAuth)
- Visit your CLI Token page to generate a key
- Create
~/.skillsmith/config.json:
mkdir -p ~/.skillsmith && cat > ~/.skillsmith/config.json << 'EOF'
{
"apiKey": "sk_live_your_key_here"
}
EOF Option 3: MCP Client Settings (MCP server only)
Add the API key directly to your ~/.claude/settings.json:
{
"mcpServers": {
"skillsmith": {
"command": "npx",
"args": ["-y", "@skillsmith/mcp-server"],
"env": {
"SKILLSMITH_API_KEY": "sk_live_your_key_here"
}
}
}
} Shell Exports Don't Work
Running export SKILLSMITH_API_KEY=... in your terminal does NOT pass the variable
to MCP servers. MCP servers run as subprocesses and don't inherit your
shell environment. Use one of the methods above instead.
Rate Limits by Tier
| Tier | Price | Requests/Month | Rate Limit |
|---|---|---|---|
| Trial (no account) | Free | 10 total | 10/min |
| Community | Free | 1,000 | 30/min |
| Individual | $9.99/mo | 10,000 | 60/min |
| Team | $25/user/mo | 100,000 | 120/min |
| Enterprise | $55/user/mo | Unlimited | 300/min |
Rate limits are per-minute and reset automatically. See Pricing for full details.
Your First Skill Search
Using MCP
Simply ask your assistant to search for skills:
"Search for testing skills"
"Find verified skills for git workflows"
"Show me skills for React development" Using the CLI
Search for skills from the command line:
# Search by keyword
skillsmith search testing
# Filter by trust tier
skillsmith search git --tier verified
# Filter by category
skillsmith search --category devops Installing Your First Skill
Using MCP
"Install the jest-helper skill"
"Install community/git-commit" Using the CLI
# Install by name
skillsmith install jest-helper
# Install by full ID
skillsmith install community/git-commit Skills are installed to ~/.claude/skills/ by default.
Understanding Skill IDs
Skills are identified by their full ID in the format author/name:
| ID Format | Example | Description |
|---|---|---|
author/name | community/jest-helper | Full skill identifier |
name | jest-helper | Short form (searches all authors) |
Next Steps
- Configure API Key - Set up authentication for more requests
- CLI Reference - Learn all CLI commands
- MCP Server - Configure advanced server options
- API Reference - Build integrations with the Skillsmith API
Need Help?
If you encounter any issues during setup, check out our GitHub Issues or refer to the troubleshooting section in the CLI reference.