Skip to content
VS Code

CLEO MCP Server for VS Code

io.github.kryptobaseddev/cleo-mcp-server

Task management for AI coding agents — CQRS 2-gateway pattern, 200 ops across 10 domains

client:VS Code transport:stdio runtime:npm

Install CLEO MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cleo-project-dir",
      "description": "CLEO_PROJECT_DIR",
      "password": true
    }
  ],
  "servers": {
    "cleo-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cleocode/cleo"
      ],
      "env": {
        "CLEO_PROJECT_DIR": "${input:cleo-project-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

CLEO MCP Server in other clients