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_skills
load_skill
load_powerpack
list_categories
suggest_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

PlanActive SlotsPer-minute limitPowerPacks
Free32No
Pro1515Yes
Max10030Yes
Get Your API Key