Skip to content
VS Code

kaneo for VS Code

io.github.usekaneo/kaneo

Official MCP server for Kaneo: manage tasks, projects, and labels from Claude and other MCP clients

client:VS Code transport:stdio runtime:npm

Install kaneo in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kaneo-api-url",
      "description": "KANEO_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kaneo-api-key",
      "description": "KANEO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "kaneo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@kaneo/mcp"
      ],
      "env": {
        "KANEO_API_URL": "${input:kaneo-api-url}",
        "KANEO_API_KEY": "${input:kaneo-api-key}"
      }
    }
  }
}

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

kaneo in other clients