Skip to main content
Documentation
MCP Server

CreatorSkills MCP Server

Let Claude, Cursor, or Cline browse and recommend AI skills from the CreatorSkills catalog, without leaving your conversation.

Quick install

The server runs via npx No global install required.

$ npx creatorskills-mcp

Tools

The server exposes four tools: browse, search, detail, and checkout.

list_skills

Paginated catalog browse. Filter by category, platform (Claude / ChatGPT / Universal), price, and sort order.

list_skills({ category: "SCRIPTS_OUTLINES", platform: "CLAUDE", page_size: 5 })
get_skill

Full skill detail: description, use cases, pricing, rating, and a direct link to the skill page.

get_skill({ slug: "viral-hook-generator" })
search_skills

Keyword search across names, descriptions, and tags. Best for natural-language queries like "repurpose YouTube to LinkedIn."

search_skills({ query: "repurpose YouTube video into tweets", limit: 5 })
get_checkout_url

Returns a direct checkout URL (with UTM attribution) when a user is ready to purchase.

get_checkout_url({ slug: "viral-hook-generator" })

Sample response

Tool call

search_skills({ query: "write better YouTube titles", limit: 3 })

Response

## Search results for "write better YouTube titles"

### 1. **Titles & Thumbnails System** ($7.00)
Slug: `titles-thumbnails-system`
Category: Titles & Thumbnails | Platform: UNIVERSAL
Rating: 4.8/5 (12 reviews) | Downloads: 247

Generate 10 scroll-stopping title variants for any video concept...

URL: https://creatorskills.co/skills/titles-thumbnails-system

Client setup

Claude Desktop

  1. Open Claude → Settings → Developer → Edit Config
  2. Add the following to claude_desktop_config.json:
{
  "mcpServers": {
    "creatorskills": {
      "command": "npx",
      "args": ["-y", "creatorskills-mcp"]
    }
  }
}
  1. Save the file and restart Claude Desktop.
  2. You should see creatorskills in your MCP tools list.

Cursor

  1. Open Cursor → Settings → MCP
  2. Add to your .cursor/mcp.json:
{
  "mcpServers": {
    "creatorskills": {
      "command": "npx",
      "args": ["-y", "creatorskills-mcp"]
    }
  }
}
  1. Reload the window. CreatorSkills will appear as an available MCP server.

Cline

  1. Open the Cline extension sidebar → MCP Servers → Edit Config
  2. Add the server entry:
{
  "mcpServers": {
    "creatorskills": {
      "command": "npx",
      "args": ["-y", "creatorskills-mcp"]
    }
  }
}

What your AI assistant can do

  • Browse the full catalog with filters for category, platform, and price
  • Search by natural-language workflow description
  • Get full skill details including description, ratings, and use cases
  • Generate a direct checkout or download URL when the user is ready

Package info

npm package

creatorskills-mcp

Transport

stdio (MCP 2024-11-05)

Runtime

Node.js ≥ 18

Data source

Live Supabase catalog

Issues or questions? support@creatorskills.co