Contexta
Contexta gives AI assistants a persistent, typed memory layer backed by a knowledge graph. One tool call searches across keyword, vector, and graph indexes simultaneously β so your agent finds the right context whether it remembers a phrase, a concept, or a relationship between entities.
Ask AI about Contexta
Powered by Claude Β· Grounded in docs
I know everything about Contexta. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Contexta MCP
Persistent memory & knowledge graph for your AI assistant.
Keyword + vector + graph search in a single lookup.
What is Contexta
Contexta is a memory MCP server that remembers like a human does β by meaning, by words, and by relationships.
Most memory tools give you one flavor of recall: embedding search, a raw log, or a graph you pay extra for. Contexta fuses all three into a single query. Your agent can ask "what did we decide about pricing with Acme last quarter?" and get back the right meeting, the right decision, and the people connected to it β in one round-trip.
Under the hood, Contexta indexes your notes, messages, and documents as typed entities (people, projects, decisions, meetings, tasks) and links them into a knowledge graph automatically. Every retrieval combines:
- Keyword search β exact phrases, names, IDs
- Vector search β semantic meaning across languages
- Graph traversal β follow relationships between entities
Why Contexta
- Typed entities out of the box β people, projects, decisions, meetings, tasks are first-class, not blobs of text
- Knowledge graph included β no paid tier gate on the graph layer
- Triple retrieval in one call β no need to stitch together three different memory APIs
- 30-second setup β install via Smithery, sign in with OAuth, done
- Per-user OAuth β your memory is private; the server authenticates every request individually
- Multilingual β English and Russian equally supported
Use cases
- Persistent memory for Claude, ChatGPT, and Cursor across sessions
- Long-term context for AI agents working on ongoing projects
- Personal knowledge base that actually understands who and what you mean
- Research and meeting recall without manually tagging anything
Install
Via Smithery (recommended)
One-click install from the Smithery listing β Smithery handles the OAuth flow and proxies connections through its gateway.
Manual β Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"contexta": {
"url": "https://mcp.contexta.cc/mcp"
}
}
}
Claude will walk you through the OAuth sign-in on first use. See examples/claude-desktop.json.
Manual β Cursor
Add a new MCP server in Cursor β Settings β MCP:
- Name: Contexta
- Transport: HTTP
- URL:
https://mcp.contexta.cc/mcp
See examples/cursor.json.
Manual β ChatGPT
In ChatGPT β Settings β Connectors β Add custom connector β paste https://mcp.contexta.cc/mcp. See examples/chatgpt.md for full instructions.
Authentication
Contexta uses OAuth 2.0 with dynamic client registration (RFC 7591) and PKCE. On first connection, your MCP client opens a browser window, you sign in with your Contexta account, and the client receives a per-user access token. Tokens are refreshed automatically.
No API keys, no shared credentials β every request runs as a specific user with that user's private memory.
Tools exposed
Contexta MCP exposes the following tools to your AI client (non-exhaustive):
searchβ keyword + vector + graph search across your memoryread_pageβ fetch a note or document by IDcreate_pageβ save a new memoryupdate_pageβ edit an existing memorygraph_searchβ traverse the knowledge graphlist_tasks/create_task/update_taskβ task managementlist_workspacesβ available workspaces- and more β the full tool list is discovered automatically by your MCP client.
Links
- Website: contexta.cc
- App: app.contexta.cc
- Smithery: smithery.ai/servers/ai-jcce/mcp-contexta
- MCP endpoint:
https://mcp.contexta.cc/mcp
License
MIT β see LICENSE.
This repository is a public showcase for the hosted Contexta MCP service. The service itself is operated by the Contexta team at mcp.contexta.cc.
