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_projectsList all active projects with their slugs and categories.
sp_get_projectGet full project details including all products with enriched AI metadata.
sp_search_productsSearch products by keyword across all your projects.
sp_get_productGet detailed information about a specific product.
sp_get_llms_txtGet the text markdown for any project.
Connect to Claude Desktop
- Open Settings → Connectors.
- Add a custom MCP server.
- Enter this server URL (replace
YOUR_KEY):
https://mcp.spiderprompt.com/api/mcp?api_key=YOUR_KEY
- Start the connection flow.
- Complete sign-in and approval in the browser.
- 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"]
}
}
}