Documentation
Claude Code Agent Mode
Claude Code MCP integration: official Anthropic CLI agent with 679+ endpoints, cost-aware routing, autonomous budget controls, and complete app deployment
Claude Code + SkillBoss
Claude Code is Anthropic's official CLI agent. With SkillBoss, Claude Code gains access to 679+ endpoints for building complete applications.
Installation
One-command setup: Tell your agent
set up skillboss.co/skill.mdto auto-configure SkillBoss with 687+ APIs.
Quick Install
# Install SkillBoss MCP server
claude mcp add skillboss
# Enter API key when prompted
# Get your key from https://skillboss.co/console
✓
Done! Claude can now use all SkillBoss services.
Skills Pack (Alternative)
# Download skills pack from console
# Extract to Claude Code skills directory
unzip skillboss-skills.zip -d ~/.claude/skills/
# Claude will automatically detect skills
claude skills list
# Output: skillboss (100+ tools available)
Usage
Natural Language Commands
Claude Code understands your intent and uses SkillBoss automatically:
You: "Build a SaaS app with auth, payments, and database"
Claude:
✓ Created Next.js app
✓ Added MongoDB database (via SkillBoss)
✓ Integrated Stripe payments (via SkillBoss)
✓ Set up user authentication (via SkillBoss)
✓ Deployed to hosting (via SkillBoss)
Result: Live SaaS at https://yourapp.com
What Claude did behind the scenes:
- Used SkillBoss database service (MongoDB)
- Used SkillBoss payment service (Stripe)
- Used SkillBoss hosting service
- All billed to your SkillBoss account
Agent-First Features
1. Cost-Aware Development
Claude automatically chooses cheapest model for each task:
You: "Generate 100 product descriptions"
Claude:
→ Uses Gemini Flash ($0.075/1M tokens) for all descriptions
→ Total cost: $0.15 instead of $15 with Claude
You: "Review this complex codebase for security issues"
Claude:
→ Uses Claude 4.5 Sonnet ($15/1M tokens) for deep analysis
→ Worth the cost for critical security review
2. Autonomous Budget Management
# Set Claude's spending limits
claude config set budget.daily_limit 50.00
claude config set budget.auto_recharge true
claude config set budget.recharge_amount 100.00
# Claude tracks its own spending
# Alerts you when approaching limit
# Auto-recharges when balance low
Example Workflows
Workflow 1: Blog Post Generation
You: "Create a blog post about AI with image and publish it"
Claude:
1. Research topic using Perplexity Sonar (via SkillBoss)
2. Generate article using Claude 4.5 Sonnet (via SkillBoss)
3. Create featured image using DALL-E 3 (via SkillBoss)
4. Deploy to website using SkillBoss hosting
Result: Published at https://yourblog.com/ai-article
Total cost: $0.25 (research + article + image + hosting)
Workflow 2: Data Analysis Pipeline
You: "Scrape 50 LinkedIn profiles and analyze them"
Claude:
1. Scrape LinkedIn via SkillBoss LinkedIn API
2. Analyze with DeepSeek R1 (cheap but capable)
3. Generate summary report
4. Email report via SkillBoss email service
Result: Analysis complete, report sent
Total cost: $2 (50 profiles @ $0.05 each + $1 analysis)
Workflow 3: Complete SaaS MVP
You: "Build a waiting list app with payments and deploy it"
Claude:
1. Create Next.js app
2. Add MongoDB database (SkillBoss)
3. Integrate Stripe checkout (SkillBoss)
4. Set up email notifications (SkillBoss SendGrid)
5. Deploy to production (SkillBoss hosting)
Result: Live app at https://waitlist.app
Total cost: $5.00 (infrastructure + deployment)
Configuration
~/.claude/config.json:
{
"mcp_servers": {
"skillboss": {
"enabled": true,
"api_key": "sk-YOUR_KEY",
"budget": {
"daily_limit": 50.00,
"monthly_limit": 1000.00,
"auto_recharge": true,
"recharge_threshold": 10.00,
"recharge_amount": 100.00
},
"cost_optimization": {
"prefer_cheap_models": true,
"max_cost_per_call": 5.00
}
}
}
}
Tips for Effective Use
1. Specify Budget Constraints
You: "Generate content but keep cost under $1"
Claude:
→ Uses Gemini Flash for all operations
→ Tracks cost in real-time
→ Stops before exceeding $1
2. Request Cost Estimates
You: "Estimate cost to generate 1000 images with DALL-E 3"
Claude:
→ 1000 images × $0.10 per image = $100
→ Suggests: "Use Flux Schnell instead ($0.01/image = $10 total)"
3. Monitor Usage
# Check today's spending
claude usage today
# Output:
# Today's SkillBoss Usage:
# - Spent: $12.45
# - Operations: 847
# - Top service: Claude 4.5 Sonnet ($8.20)
# - Recommendation: Switch to Gemini Flash for simple tasks (save $6/day)
Next Steps
📄
Quick Start
Get started with SkillBoss
📈
Cost Optimization
Reduce development costs
🔌
MCP Server
Advanced MCP configuration
📄
Budget Management
Set spending limits