Developers

MCP server

Slovey exposes your engineering memory over the Model Context Protocol, so any MCP-capable agent can read your decisions, rules, and history before it writes code — one context layer for every tool.

Claude Code

Add the Slovey MCP server so Claude queries your decision graph before acting on a change.

Cursor

Point Cursor at the same context layer your reviewers and CI use.

Codex & others

Any agent that speaks MCP can connect to the same memory over a single endpoint.

Setup (hosted)

Install the CLI, create a token in your dashboard, and point your agent at the MCP server. No database — the server reads your decisions over the hosted API. The token is scoped to one repository, so a client can only ever reach that repo's decisions.

npm i -g slovey   # provides the slovey-mcp binary

# .mcp.json (Claude Code, Cursor, …)
{
  "mcpServers": {
    "slovey": {
      "command": "slovey-mcp",
      "env": { "SLOVEY_TOKEN": "cb_…" }
    }
  }
}

Prefer HTTP? The same data is on the REST API. Running your own deployment? Set DATABASE_URL and SLOVEY_REPO instead of a token — see apps/mcp/README.md.