MCP and agents

Connect Claude Code, Cursor and other assistants directly to a memory or space.

Chordian exposes Model Context Protocol endpoints so an assistant can read from and write to memory without leaving the editor or chat window.

This is where a memory platform either becomes infrastructure or stays a website people occasionally visit.

Endpoints

EndpointScope
/mcp/memoryA whole memory
/mcp/space/{space_id}One space

Prefer the space endpoint. Scoping an assistant to one project is almost always what you want, and scope is enforced server-side from the credential rather than requested by the client.

Tools

ToolPurpose
searchQuery the memory in scope
writeStore content
space_getFetch space context — name, vault, recent topics
conversation_historyRead prior conversations
save_conversationPersist a session
append_conversation_contentExtend an existing conversation

Connecting

The endpoint implements a full OAuth 2.1 authorization server — discovery, dynamic client registration and a consent screen. A modern MCP client discovers and completes the flow on its own:

.mcp.json
{
  "mcpServers": {
    "chordian": {
      "url": "https://api.uni-flow.ai/mcp/space/spc_7f3a91"
    }
  }
}

The client registers itself, opens the consent screen in a browser, and stores the resulting token. Nothing is pasted.

Per-project scoping

Create a space per project

One space per repository or workstream.

Mint a scoped key per space

Give each project its own credential.

Commit the config, not the key

Reference the credential from the environment so the config can be shared without the secret.

Two projects then get two spaces with no cross-talk, and revoking one does not disturb the other.

Per-project config generators in the console, and automatic session capture on disconnect, are specified but not built. Configure manually for now.

Not yet published

The MCP endpoints work and are connectable today. Chordian is not yet listed in the Claude Code, Cursor or Windsurf plugin directories — configure by URL rather than looking for a marketplace entry.

Was this page helpful?
Report an issue

On this page