PromptDrop
// developers

Pull prompts from anywhere.

PromptDrop is a static directory you can read programmatically. Plug it into your AI of choice via Model Context Protocol, or fetch the JSON directly from your own tooling. Free, no signup, no rate limit beyond Vercel’s defaults.

// option 1 — MCP server

Add to Claude Desktop, Cursor, or any MCP client

Three tools come online instantly: list_categories, list_prompts, and get_prompt. Your AI can search and pull the whole library into context.

// claude desktop config (~/Library/Application Support/Claude/claude_desktop_config.json)
{
  "mcpServers": {
    "promptdrop": {
      "url": "https://prompt-drop.info/api/mcp"
    }
  }
}

Restart Claude Desktop. In any chat, your AI can now run “Find a PromptDrop prompt for cold email to B2B SaaS founders and use it.”

Cursor: add the same JSON to ~/.cursor/mcp.json. Other clients — point them at https://prompt-drop.info/api/mcp.

// option 2 — JSON API

Fetch directly from your app

GET /api/promptsfull library
curl https://prompt-drop.info/api/prompts
Returns: { count, categories[], prompts[] }. Each prompt has slug, title, category, difficulty, description, prompt body, useCases, tags, recommendedTool, url.
GET /api/prompts/[slug]single prompt
curl https://prompt-drop.info/api/prompts/cold-email-saas-decision-makers
GET /pro-pack/prompts.jsonbundled snapshot (no slug routing)
curl https://prompt-drop.info/pro-pack/prompts.json
// option 3 — interactive builder

Use the prompt builder

Don’t want to wire up MCP? The builder gives you a form for every prompt’s {{BRACKET}} variables and outputs the filled version with one click.

// licence

Prompts are free to use, including commercially. Don’t republish the directory as your own. If you build something cool with the API, drop a link in the GitHub Discussions on the repo (link in footer).