Skip to content
VS Code

vibemap mcp for VS Code

io.github.ashmet/vibemap-mcp

Load & create VibeMap product specs from your coding agent; sync build progress.

client:VS Code transport:stdio runtime:npm

Install vibemap mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vibemap-api-key",
      "description": "VIBEMAP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vibemap-base-url",
      "description": "VIBEMAP_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "vibemap-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@vibemap.ai/mcp-server"
      ],
      "env": {
        "VIBEMAP_API_KEY": "${input:vibemap-api-key}",
        "VIBEMAP_BASE_URL": "${input:vibemap-base-url}"
      }
    }
  }
}

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

vibemap mcp in other clients