Platform
MCP Server (Model Context Protocol)
Connect Tellodb to any MCP-compatible client — Claude Desktop, Cursor, Windsurf, and more — with zero configuration.
What is MCP?
The Model Context Protocol (MCP) is an open standard for connecting AI assistants with external tools and data sources. Tellodb exposes an MCP server that lets any MCP-compatible client — including Claude Desktop, Cursor, and Windsurf — query memories, store facts, and explore knowledge graphs directly.
By supporting MCP, Tellodb works with every MCP client out of the box. No custom SDKs or integration code needed.
Available Tools
| Metric | Tool | Description | Required Params |
|---|---|---|---|
| search_memory | Search memories with hybrid vector+lexical retrieval | query | |
| store_fact | Store a new fact or observation | text, entity_id | |
| explore_graph | Walk the knowledge graph from an entity | entity | |
| get_memory | Retrieve a specific memory by ID | memory_id |
Quick Start — Claude Desktop
- Open Claude Desktop → Settings → Developer → Edit Config.
- Add the following entry to your claude_desktop_config.json:
- Restart Claude Desktop. You should see the Tellodb tools in the toolbox.
- Ask Claude to "search my memories" or "store that Alice likes hiking".
{
"mcpServers": {
"tellodb": {
"command": "npx",
"args": ["@tellodb/mcp-client"],
"env": {
"TELLODB_API_KEY": "YOUR_API_KEY"
}
}
}
}Server Endpoint
- The MCP server is available at: https://api.tellodb.com/mcp
- Authentication is via x-api-key header or Bearer token in the Authorization header.
- The protocol uses JSON-RPC 2.0 over HTTP POST.
- A server card is available at: https://tellodb.com/.well-known/mcp/server-card.json
- Install the MCP client package: npm install @tellodb/mcp-client