Use with Cursor
Connect the Search Stack MCP server and Cursor can query and manage your index directly — search records, import a file, add a facet — alongside the code it writes.
1. Install
Or by hand in ~/.cursor/mcp.json:
{
"mcpServers": {
"searchstack": {
"url": "https://mcp.searchstack.dev/"
}
}
}
2. Sign in
The first call opens a browser to authorise Cursor against your Search Stack account, and the connection carries your permissions from then on. To use a key instead:
{
"mcpServers": {
"searchstack": {
"url": "https://mcp.searchstack.dev/",
"headers": { "X-API-Key": "YOUR_API_KEY" }
}
}
}
Grab one from the console. A read-only key lets Cursor query; a read/write key lets it import and manage records.
3. Ask
“Search mymovieslist for heist films from the 90s.”
“Import this CSV intomoviesand show me what failed.”
“Add agenrefacet to my movies list.”
The talk-to-your-data lesson shows which tool gets called for a given request, and what comes back.
Anything that runs in a browser must use a read-only API key. Keep read/write keys out of client code.
« Use with Claude
The Claude skill and MCP server.
Use with Copilot »
The same server, inside VS Code.