MCP Server

Let AI agents query your products directly from their IDE.

What is MCP?

The Model Context Protocol (MCP) is an open protocol that lets AI agents (Claude, Cursor, VS Code, Windsurf, Zed) access your products directly from their IDE. Instead of just crawling your website, AI can query your product database in real-time.

Authentication

MCP access requires an API key scoped to your account. Generate one from app.spiderprompt.com/account → MCP API Keys. Pass it as a query parameter: ?api_key=YOUR_KEY

Available Tools

sp_list_projects

List all active projects with their slugs and categories.

sp_get_project

Get full project details including all products with enriched AI metadata.

sp_search_products

Search products by keyword across all your projects.

sp_get_product

Get detailed information about a specific product.

sp_get_llms_txt

Get the text markdown for any project.

Connect to Claude Desktop

  1. Open SettingsConnectors.
  2. Add a custom MCP server.
  3. Enter this server URL (replace YOUR_KEY):
https://mcp.spiderprompt.com/api/mcp?api_key=YOUR_KEY
  1. Start the connection flow.
  2. Complete sign-in and approval in the browser.
  3. Return to Claude once the browser finishes redirecting.

Connect via CLI

Run this command in your terminal (replace YOUR_KEY):

claude mcp add --transport http spiderprompt "https://mcp.spiderprompt.com/api/mcp?api_key=YOUR_KEY"

Connect to Cursor / VS Code / Windsurf / Zed

Add this to your MCP configuration (replace YOUR_KEY):

{
  "mcpServers": {
    "spiderprompt": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.spiderprompt.com/api/mcp?api_key=YOUR_KEY"]
    }
  }
}