Step 1 — Create an MCP key
Open MCP Integrations
Go to Integrations → AI / MCP in your SureFeedback dashboard, then click Manage MCP Keys.
Create a key
Click Create MCP Key, give it a name (e.g. Claude Code), select Read and Write permissions, and click Create MCP Key.
Copy the key
Copy the sf_... key from the dialog. It is shown only once.
Claude Code
Claude Desktop
Cursor
Windsurf
Cline (VS Code)
Run this command in your terminal:claude mcp add --transport http surefeedback https://api.surefeedback.com/mcp \
--header "X-API-Key: sf_your_key_here"
Restart Claude Code. Type /mcp to verify surefeedback is connected. Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):{
"mcpServers": {
"surefeedback": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://api.surefeedback.com/mcp",
"--header",
"X-API-Key: sf_your_key_here"
]
}
}
}
Restart Claude Desktop. Add to .cursor/mcp.json in your project root (or ~/.cursor/mcp.json globally):{
"mcpServers": {
"surefeedback": {
"type": "streamable-http",
"url": "https://api.surefeedback.com/mcp",
"headers": {
"X-API-Key": "sf_your_key_here"
}
}
}
}
Add to ~/.codeium/windsurf/mcp_config.json:{
"mcpServers": {
"surefeedback": {
"serverUrl": "https://api.surefeedback.com/mcp",
"headers": {
"X-API-Key": "sf_your_key_here"
}
}
}
}
Open Cline MCP Settings in VS Code and add:{
"mcpServers": {
"surefeedback": {
"url": "https://api.surefeedback.com/mcp",
"headers": {
"X-API-Key": "sf_your_key_here"
}
}
}
}
Step 3 — Verify the connection
Ask your AI assistant:
“List all sites in my SureFeedback project”
If connected correctly, it will return your sites list. You’re ready to go.
Each MCP key is scoped to your active project. To switch projects, update your active project in the SureFeedback dashboard — no key change needed.