VS Code

Install coree as an MCP server for VS Code agent features.

VS Code supports MCP servers for agent features through GitHub Copilot and the agent panel. Configuration is via a JSON file.

Project scope

Create .vscode/mcp.json in your project root:

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

VS Code picks this up automatically when you open the project. The MCP server will appear in the agent panel.

User scope

Add to your VS Code settings.json (Ctrl+Shift+P > "Open User Settings JSON"):

{
  "mcp": {
    "servers": {
      "coree": {
        "type": "stdio",
        "command": "npx",
        "args": ["--yes", "@coree-ai/coree@0.12.0", "serve"]
      }
    }
  }
}

Enable

After adding the config, open the agent panel in VS Code. The coree server should appear in the MCP servers list. If it shows as disconnected, use "Restart MCP Server" from the command palette.

Notes

VS Code's MCP support requires GitHub Copilot and a version of VS Code that includes agent mode. MCP server configuration format may change between VS Code releases - refer to the VS Code documentation for the current schema if the above does not work.

Verify

In an agent session:

call the coree diagnose tool