Skip to content
VS Code

mindmaps for VS Code

app.cloudmindmaps/mindmaps

Create and read mind maps on CloudMindMaps from Claude and other AI assistants.

client:VS Code transport:stdio runtime:npm

Install mindmaps in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cloudmindmaps-api-key",
      "description": "CLOUDMINDMAPS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudmindmaps-api-url",
      "description": "CLOUDMINDMAPS_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mindmaps": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "cloudmindmaps-mcp"
      ],
      "env": {
        "CLOUDMINDMAPS_API_KEY": "${input:cloudmindmaps-api-key}",
        "CLOUDMINDMAPS_API_URL": "${input:cloudmindmaps-api-url}"
      }
    }
  }
}

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

mindmaps in other clients