
Build on the memory layer, not another chat wrapper. Integrate governed user memory via MCP and API — with real consenting users behind every token.
Read and write memory graph data programmatically to power custom workflows and products.
Open Data PlatformConnect user memory to MCP-compatible clients with scoped permissions and revocable OAuth tokens.
MCP documentationFollow setup guides, integration walkthroughs, and platform references for production workflows.
Open DocsCognitia is a user-authorized memory MCP server. Clients connect over JSON-RPC with OAuth; tools such as unified_memory_agent, memory_as_of, and memory_diff operate on the signed-in user's graph. OAuth consent is per source (emails, files, local app sync, ambient, …); the agent searches those sources through a unified vector path rather than ungated “search everything.”
https://www.cognitia-ai.com/api/mcp
Directory listings (MCPMarketplace, FindMCP, and similar): submit Cognitia as a memory MCP server using the endpoint above and the OAuth flow below. Prefer production tool names — do not invent parallel get_entities-style aliases for listings.
Directory submission checklist
1. Endpoint: https://www.cognitia-ai.com/api/mcp
2. Auth: OAuth at /api/mcp/oauth/* (see consent flow below)
3. Category: user memory / personal knowledge graph
4. After listing goes live, add the public URL here and in docs/roadmap/mcp-directory-listings.md
Live directory listings: mcpservers.org — Cognitia AI. Add FindMCP / MCPList URLs here when verified.
Cognitia supports third-party access through MCP OAuth consent and authenticated MCP API calls. Apps do not get blanket access. Each client is registered, users approve scopes, and tokens can be revoked.
End-to-end flow for a third-party app accessing Cognitia memory with explicit user approval.
Step 1
App registers OAuth metadata and redirect URIs.
Step 2
User reviews requested tools and approves access scopes.
Step 3
App uses access token to fetch available tools for the user.
Step 4
App executes memory-aware calls through JSON-RPC.
Example client registration:
curl -X POST https://www.cognitia-ai.com/api/mcp/oauth/register \
-H "Content-Type: application/json" \
-d '{
"client_name": "My MCP Client",
"redirect_uris": ["https://myapp.com/oauth/callback"],
"grant_types": ["authorization_code", "refresh_token"],
"token_endpoint_auth_method": "none"
}'Example tools discovery call with bearer token:
curl -X POST https://www.cognitia-ai.com/api/mcp/tools/list \
-H "Authorization: Bearer <access_token>" \
-H "Content-Type: application/json" \
-d '{}'Use MCP OAuth and JSON-RPC to query tools and invoke memory-capable operations for your users.
Use the MCP marketplace flow to connect third-party servers via remote transport or OAuth-based setup.