Wikiprompt

Wikiprompt MCP Server

The Wikipedia of AI prompts, available to every MCP client

Connect Claude, Cursor, VS Code or any Model Context Protocol client to the Wikiprompt catalog: 900+ curated AI prompts for ChatGPT, Claude, GPT Image, Seedance, Midjourney and more, searchable by model, style, prompt type and quality rating, in 7 languages. Free, no key needed for reading.

Endpoint

https://mcp.wikiprompt.org/mcp

Transport: Streamable HTTP. No authentication required for read tools.

Quick setup

Claude Code

claude mcp add --transport http wikiprompt https://mcp.wikiprompt.org/mcp

claude.ai (web and desktop)

Settings > Connectors > Add custom connector > paste https://mcp.wikiprompt.org/mcp

Cursor

Settings > MCP > Add new MCP server, or add to .cursor/mcp.json:

{
  "mcpServers": {
    "wikiprompt": { "url": "https://mcp.wikiprompt.org/mcp" }
  }
}

VS Code (GitHub Copilot)

code --add-mcp '{"name":"wikiprompt","type":"http","url":"https://mcp.wikiprompt.org/mcp"}'

Any other client (generic JSON)

{
  "mcpServers": {
    "wikiprompt": {
      "type": "streamable-http",
      "url": "https://mcp.wikiprompt.org/mcp"
    }
  }
}

Tools

ToolWhat it does
search_promptsFull-text + faceted search: category, model, style, prompt type, media, rating, featured, sort
get_promptFull prompt by slug: complete text, metadata, author, media, source attribution, optional locale
list_categoriesThe 9 categories with live counts
list_facetsSearchable facet values: AI models, styles, prompt types (with counts)
get_featuredEditor-featured prompts
get_trendingPrompts trending in the last 7 days
get_recentLatest additions, optionally by category
random_promptOne random prompt, optionally by category
get_statsCatalog totals and type breakdown
get_prompt_translationsAvailable translations of a prompt (7 languages)
prompts_by_authorPrompts contributed by a specific author
submit_promptSubmit a new prompt (requires a wikiprompt API key)

Plus MCP resources (wikiprompt://llms.txt, wikiprompt://categories) and an MCP prompt (use_prompt) that loads any catalog prompt as your instruction.

Submitting prompts

The submit_prompt tool publishes a prompt under your Wikiprompt account. Create an API key from your profile page and pass it as the api_key argument (or an Authorization: Bearer header).

See also