streamable-httpupdated 1mo ago
Tabula is a shared memory layer for your AIs. Tell Claude once, and ChatGPT already knows. Connected AIs save the durable facts you share (who you are, what you're building, how you like to work) and recall them in any other AI, so you never re-explain yourself.
What can you do with Tabula?
Tabula MCP Server
One memory. Every AI.
Tabula is a shared memory layer for your AIs. Tell Claude once, and ChatGPT already knows. Connected AIs save the durable facts you share (who you are, what you're building, how you like to work) and recall them in any other AI, so you never re-explain yourself.
This repo documents Tabula's hosted MCP server and how to connect it from any MCP client.
Endpoint
| URL | https://www.tabula360.com/api/mcp/mcp |
| Transport | Streamable HTTP |
| Auth | OAuth 2.1 (web clients) or Bearer token (CLIs and IDEs) |
Sign up at tabula360.com, then get your access token on the Connect page. The token is shown once, treat it like a password.
Tools
| Tool | What it does |
|---|---|
save_memory |
Save a durable fact, preference, or decision |
search_memory |
Semantic search across everything saved |
list_memories |
Browse saved memories |
update_memory |
Correct or refresh an existing memory |
delete_memory |
Remove a memory for good |
Connect
ChatGPT, Claude, Mistral, Grok, Perplexity, Manus
Web clients connect as a custom connector with OAuth. Follow the step-by-step guide.
Claude Code
claude mcp add --transport http tabula \
https://www.tabula360.com/api/mcp/mcp \
--header "Authorization: Bearer YOUR_TOKEN"
Cursor
Add to ~/.cursor/mcp.json (or .cursor/mcp.json in a project):
{
"mcpServers": {
"tabula": {
"url": "https://www.tabula360.com/api/mcp/mcp",
"headers": {
"Authorization": "Bearer ${env:TABULA_MCP_TOKEN}"
}
}
}
}
VS Code
Add to .vscode/mcp.json. VS Code uses servers and prompts for the token via inputs:
{
"servers": {
"tabula": {
"type": "http",
"url": "https://www.tabula360.com/api/mcp/mcp",
"headers": { "Authorization": "Bearer ${input:tabula-token}" }
}
},
"inputs": [
{ "type": "promptString", "id": "tabula-token", "description": "Tabula token", "password": true }
]
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"tabula": {
"serverUrl": "https://www.tabula360.com/api/mcp/mcp",
"headers": {
"Authorization": "Bearer ${env:TABULA_MCP_TOKEN}"
}
}
}
}
Codex CLI
Add to ~/.codex/config.toml:
[mcp_servers.tabula]
url = "https://www.tabula360.com/api/mcp/mcp"
bearer_token_env_var = "TABULA_MCP_TOKEN"
Mistral Vibe CLI
Add to ~/.vibe/config.toml, with TABULA_MCP_TOKEN in ~/.vibe/.env:
[[mcp_servers]]
name = "tabula"
transport = "http"
url = "https://www.tabula360.com/api/mcp/mcp"
[mcp_servers.auth]
type = "static"
api_key_env = "TABULA_MCP_TOKEN"
Your own code (OpenRouter or any OpenAI-compatible API)
Give a plain API script persistent memory with the standard tool-calling loop. A complete single-file example lives in examples/openrouter-memory: it fetches Tabula's tools over MCP, hands them to the model, and executes the calls.
What to expect
Asking always works: say "Save that to Tabula" or "Ask Tabula" and any model will call the right tool. Fully automatic saving and recall depends on the model and the client, because MCP offers tools, it cannot force a call.
To make recall automatic in clients with a system prompt or custom instructions, add this line:
Always check Tabula before answering anything about me, my work, or my projects, even if you think you already know.
The guide has the per-platform version of this for ChatGPT, Claude, Mistral, and the rest.
Privacy
Memories are isolated per account with row-level security, and never sold or shared. You can view, edit, export, or delete everything at any time. Privacy policy.
Pricing
Free during beta, no card required.
Links
Install
Add Tabula to your client. Pick the one you use.
claude mcp add --transport http tabula https://www.tabula360.com/api/mcp/mcpcodex mcp add tabula --url https://www.tabula360.com/api/mcp/mcp{
"mcpServers": {
"tabula": {
"url": "https://www.tabula360.com/api/mcp/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"tabula": {
"type": "http",
"url": "https://www.tabula360.com/api/mcp/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"tabula": {
"url": "https://www.tabula360.com/api/mcp/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"tabula": {
"serverUrl": "https://www.tabula360.com/api/mcp/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
5 tools
Tabula exposes 5 tools to a connected agent.
- save_memory
- Save a durable fact, preference, or decision
- search_memory
- Semantic search across everything saved
- list_memories
- Browse saved memories
- update_memory
- Correct or refresh an existing memory
- delete_memory
- Remove a memory for good
Score
65 / 100
Good
- Documentation25/25
- Maintenance16/25
- Trust6/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 46 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 5 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Jul 16, 2026 |
| 1.0.0 | Jul 16, 2026 |