skillboss-mcp-server
v2.1.1
Published
SkillBoss MCP Server — the wallet for AI agents. Access 354+ tools (web scraping, search, image/video/audio generation, email, 100+ LLMs) via Model Context Protocol. Implements Agent Shopping Protocol v0.1 with x402 + MPP payment rails.
Maintainers
Readme
skillboss-mcp-server
The wallet for AI agents — official SkillBoss MCP Server. Access 354+ tools (web scraping, web search, image/video/audio generation, email, and 100+ LLMs) via Model Context Protocol.
Works with Claude Code, Cursor, Windsurf, OpenClaw, and any MCP-compatible agent.
Implements Agent Shopping Protocol v0.1
— the open protocol for AI agents to discover, pay for, and reconcile
purchases. Supports skillboss_wallet (default), x402, and mpp payment
rails.
Quick Start
npx (Recommended)
# Run directly without installation
npx -y skillboss-mcp-serverGlobal Installation
npm install -g skillboss-mcp-server
skillboss-mcpConfiguration
Claude Code
# Add SkillBoss MCP server
claude mcp add skillboss -s user -- npx -y skillboss-mcp-server
# Then set your API key in ~/.claude.json under mcpServers.skillboss.env
# Or: export SKILLBOSS_API_KEY=YOUR_KEY
# Verify installation
claude mcp listCursor / Windsurf
Add to your MCP settings (Settings > MCP Servers):
{
"skillboss": {
"command": "npx",
"args": ["-y", "skillboss-mcp-server"],
"env": {
"SKILLBOSS_API_KEY": "YOUR_KEY"
}
}
}Manual Configuration
Edit ~/.mcp/servers.json:
{
"servers": {
"skillboss": {
"command": "npx",
"args": ["-y", "skillboss-mcp-server"],
"env": {
"SKILLBOSS_API_KEY": "YOUR_KEY"
}
}
}
}Get Your API Key
- Visit skillboss.co/console
- Sign up (free tier includes 20 credits)
- Copy your API key
Available Tools
chat
Send messages to any of 100+ AI models.
Available models:
- bedrock/claude-4-5-sonnet (Best for complex reasoning)
- gpt-5 (Latest OpenAI)
- gemini-2.5-flash (Fastest, 1M context)
- deepseek/deepseek-v3 (Cost-effective coding)
- and 40+ morelist_models
List all available AI models with capabilities.
generate_image
Create images using DALL-E 3 or Flux.
text_to_speech
Convert text to speech with ElevenLabs or OpenAI TTS.
get_balance
Check your credit balance.
recommend_model
Get AI model recommendations based on your task.
catalog_search (new in 2.1)
Semantic search over the full SkillBoss catalog (354 products). Returns
ranked matches with pricing, capabilities, retry_policy, and
payment_protocols so your agent can decide before buying.
Filters:
category: intelligence | information | creation | action | commercepayment_protocol: skillboss_wallet | x402 | mpppreferred_only: when set, only return products where the payment protocol is the preferred fit
Example: search for "scrape a JS-rendered site" that prefers x402.
Example Usage
Once installed, your AI agent can use SkillBoss tools naturally:
User: "Use SkillBoss to generate an image of a sunset"
Agent: [Calls generate_image tool]
→ Image URL: https://...
User: "Ask Claude about the best Python web framework"
Agent: [Calls chat tool with model=bedrock/claude-4-5-sonnet]
→ Response: "For modern Python web development..."Environment Variables
| Variable | Description | Default |
|----------|-------------|---------|
| SKILLBOSS_API_KEY | Your SkillBoss API key (required) | - |
| SKILLBOSS_BASE_URL | API base URL | https://api.skillboss.co/v1 |
Pricing
SkillBoss uses pay-as-you-go pricing with no markup on model costs:
| Model | Input | Output | |-------|-------|--------| | Claude 4.5 Sonnet | $3.00/1M tokens | $15.00/1M tokens | | GPT-5 | $15.00/1M tokens | $15.00/1M tokens | | Gemini 2.5 Flash | $0.10/1M tokens | $0.40/1M tokens | | DeepSeek V3 | $0.27/1M tokens | $0.27/1M tokens |
Links
- Documentation: skillboss.co/docs
- Console: skillboss.co/console
- Discord: discord.gg/skillboss
- GitHub: github.com/heeyo-life/skillboss-mcp
One-Line Install (Alternative)
If you prefer the all-in-one installer:
curl -fsSL https://skillboss.co/install.sh | bashThis installs the SkillBoss Skills Pack for Claude Code, Cursor, and Windsurf.
License
MIT
