MCP
Setup

Add prompted to your editor in 2 minutes. Your prompts become native tools in Claude Code, Cursor and any MCP-compatible client.

Login required — Log in to see your API key and enable MCP. Log in →
01

Get your API key

Generate an API key from your dashboard. It authenticates your editor with the MCP server.

Log in first →
02

Claude Code

Open ~/.claude/settings.json and add the config under mcpServers.

~/.claude/settings.json
{
  "mcpServers": {
    "prompted": {
      "url": "https://mcp.prompted.fr",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
Replace YOUR_API_KEY with the key you generated in step 1.
03

Cursor

In Cursor: Settings → MCP or directly in ~/.cursor/mcp.json.

~/.cursor/mcp.json
{
  "mcpServers": {
    "prompted": {
      "url": "https://mcp.prompted.fr",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
04

Test the integration

In Claude Code or Cursor, type in the chat:

Use the prompted MCP to list my prompts

The 4 available tools:

get_prompt
Fetch a prompt by ID
id: string
list_prompts
List your prompts with filters
category?, tags?, page?
fill_template
Fill variables and return the prompt
id: string, vars: {}
search_prompts
Full-text search in your prompts
query: string

Frequently asked questions

My editor isn't in the list?
Any MCP-compatible client (VS Code with Continue.dev, etc.) can use this server. Use the URL https://mcp.prompted.fr with your key as Bearer.
MCP won't connect?
Check that your API key is valid and your plan is Pro or Infinite. Test the endpoint: curl -H "Authorization: Bearer YOUR_KEY" https://mcp.prompted.fr/health
Are my private prompts accessible?
Yes, all your prompts (public and private) are accessible via MCP, authenticated by your API key. Other users' prompts are not accessible.