Connect StackSpeed to Claude, Cursor, Windsurf, or any MCP-compatible AI tool. Query WordPress plugin benchmarks, simulate stacks, and detect conflicts — all without leaving your editor.
Go to Settings → API & MCP Integration and click Generate API key. Your key starts with ssk_live_.
Copy the key immediately after generation — it will be partially masked afterwards. You can always regenerate it from Settings.
Open your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the StackSpeed server block (replacing ssk_live_your_key_here with your real key):
{
"mcpServers": {
"stackspeed": {
"command": "npx",
"args": ["-y", "@stackspeed/mcp"],
"env": {
"STACKSPEED_API_KEY": "ssk_live_your_key_here"
}
}
}
}Save the file and restart Claude Desktop.
In Cursor: open Settings → MCP Servers → Add Server. In Windsurf: open Settings → AI → MCP Servers.
Use the same JSON block as Claude Desktop:
{
"mcpServers": {
"stackspeed": {
"command": "npx",
"args": ["-y", "@stackspeed/mcp"],
"env": {
"STACKSPEED_API_KEY": "ssk_live_your_key_here"
}
}
}
}Once configured, you can ask your AI tool questions like:
Which of these plugins would have the lowest performance impact? - WooCommerce - WPForms - Yoast SEO - W3 Total Cache
The AI will call StackSpeed's MCP tools to fetch real benchmark data and return a data-backed answer with sources.
search_pluginsSearch the plugin directory by name, category, or keywordget_pluginFetch full benchmark data and metadata for a single pluginsimulate_stackSimulate a set of plugins and return a composite performance scoreget_conflictsCheck a list of plugin slugs for known compatibility issuescompare_pluginsSide-by-side metric comparison for two specific pluginsDouble-check your API key in Settings. If you recently regenerated it, make sure you updated the config file with the new key.
Restart Claude Desktop after editing the config file. If it still doesn't appear, check the JSON is valid (no trailing commas) and the key is on a Paid or Premium plan.
Make sure you have Node.js 18+ and npm 9+ installed. Run npm --version and node --version to check. The @stackspeed/mcp package requires Node 18.
MCP integration is available on Paid and Premium plans.
View pricing