MCP

Two tools. That's the whole integration.

The CognoDB MCP server exposes exactly two capabilities to an agent: read the schema, run a query. It turns out that's all a capable model needs — it discovers what's in the graph and composes its own questions.

schema

Returns labels, relationship types and properties, so the agent learns the shape of the graph before writing a line of Cypher — no hand-maintained tool description to drift out of date.

query

Executes Cypher over the same Bolt connection your drivers use, parameters and all. What the agent can ask is bounded by the database's own permissions, not by which tools you thought to write.

Read-only mode

Run the server read-only when an agent should explore but never write — analysis and Q&A against production without write access being on the table.
Any MCP client — this is the whole setupjson
{
  "mcpServers": {
    "cognodb": {
      "command": "npx",
      "args": ["-y", "@cognodb/mcp"],
      "env": {
        "COGNODB_URI": "bolt+ssc://db-7f3a2c1e.databases.cognodb.cloud",
        "COGNODB_PASSWORD": "${DB_PASSWORD}"
      }
    }
  }
}

Works in Claude Desktop, Claude Code, Cursor, Windsurf, Cline, Zed, JetBrains, Warp and the Gemini CLI — anything that speaks MCP.

Clients

Wherever your agents already run.

ClaudeCursorWindsurfClineZedJetBrainsWarpGemini CLI

The pattern

A graph per agent, reachable over MCP.

Instances start in milliseconds and bill by the second, so each agent or session can own a private, persistent, queryable memory — and you can open it in the console and see exactly what it learned.

Start now

~98.7%

token efficiency at 2,000 entities — see the footnotes above

Point an agent at a graph today.

Free tier, one config block, no integration code.

First-graph path

Live
  1. Create a free instance

    No card. Ready in about a minute.

  2. Connect your driver

    bolt+ssc:// URI into the driver you already use.

  3. Write two MERGEs

    That's the entire shape of agent memory.

  4. Point an agent at it

    One MCP config block. No integration code.