Cursor

Install coree as a Cursor MCP server.

Cursor supports MCP servers via a JSON config file. coree can be installed at project scope or user scope.

Install via CLI

If coree is already installed and on your PATH:

# project scope (writes .cursor/mcp.json)
coree install cursor --scope project

# user scope (writes ~/.cursor/mcp.json)
coree install cursor --scope user

Manual install

Project scope

Create or edit .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "coree": {
      "command": "npx",
      "args": ["--yes", "@coree-ai/coree@0.12.0", "serve"]
    }
  }
}

User scope

Create or edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "coree": {
      "command": "npx",
      "args": ["--yes", "@coree-ai/coree@0.12.0", "serve"]
    }
  }
}

User scope installs coree for all projects. Project scope installs it only for the current project.

Enable in Cursor

After adding the config, restart Cursor or reload the window. The coree MCP server will appear in Cursor's MCP panel (Settings > MCP). Enable it if it is not already active.

Verify

Open a Cursor Agent session and ask:

call the diagnose tool and show me the output

Uninstall

coree uninstall cursor --scope project

This removes the coree entry from .cursor/mcp.json. If the file becomes empty, it is left in place.