API
One API call to expertise
Activate expert skills in Claude Code via a standard REST API or native MCP protocol. Bearer token auth, JSON responses, rate-limited per plan.
cURL
terminal
$ curl -s https://supaskills.ai/api/v1/skills/api-design-architect \
-H "Authorization: Bearer sk_supa_..." \
| jq .
{
"data": {
"name": "API Design Architect",
"tier": "platinum",
"system_prompt": "You are an expert..."
}
}
TypeScript
activate-skill.ts
const res = await fetch(
"https://supaskills.ai/api/v1/skills/api-design-architect",
{
headers: { Authorization: `Bearer ${API_KEY}` }
}
);
const { data } = await res.json();
MCP Protocol
Native Claude Code integration
Configure supaskills as an MCP server. Search and activate skills directly from Claude Code's terminal. JSON-RPC 2.0 with SSE streaming.
search_skillsload_skillload_powerpacklist_categoriessuggest_skill.claude/settings.json
{
"mcpServers": {
"supaskills": {
"url": "https://supaskills.ai/api/mcp",
"headers": {
"Authorization": "Bearer sk_supa_..."
}
}
}
}
Authentication
1
Sign up
Create an account and verify your email.
2
Generate API key
Go to Dashboard > Settings and create a key prefixed sk_supa_.
3
Use Bearer token
Pass it as Authorization: Bearer sk_supa_... in every request.
Rate limits per plan
| Plan | Active Slots | Per-minute limit | PowerPacks |
|---|---|---|---|
| Free | 3 | 2 | No |
| Pro | 15 | 15 | Yes |
| Max | 100 | 30 | Yes |