MCP Server for AI Agents
Connect Claude, Cursor, Windsurf, or any MCP client to Sprigr in one config block. Your agent gets 20 tools for search, storage, index management, and access control.
Install
npx -y @sprigr/mcp-server Configuration
Add to your MCP client config (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"sprigr": {
"command": "npx",
"args": ["-y", "@sprigr/mcp-server"],
"env": {
"SPRIGR_API_KEY": "your-api-key"
}
}
}
} Environment variables
SPRIGR_API_KEY - Required. Sign up at platform.sprigr.com to get one.
SPRIGR_API_BASE - Optional. Defaults to https://search.sprigr.com Available tools (20)
signuplist_indexescreate_indexupdate_settingsimport_objectssmart_importsearchmulti_searchget_objectexport_objectsget_statsdelete_objectsdelete_indexclear_indexset_aliasdelete_aliaslist_aliasescreate_api_keycreate_secured_keylist_api_keys How it works
The MCP server runs locally on your machine via npx. Keyword searches execute locally (~5ms) through an embedded WebAssembly engine, against a binary index that auto-downloads from the server. Semantic and exact-match queries route to the nearest edge node. Writes go to the cloud API and the local index refreshes automatically on the next search. No server to host, no ports to open.
Smart import for agent memory
The smart_import tool deduplicates before writing. Each new record is compared against existing ones by meaning: duplicates merge, stale facts are superseded with history preserved, and genuinely new records insert. Pass dry_run to preview the decision without persisting.