Skip to content
VS Code

weeek mcp for VS Code

io.github.yolkins/weeek-mcp

Local MCP server for Weeek (stdio transport) — read-only by default, opt-in write tools.

client:VS Code transport:stdio runtime:npm

Install weeek mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "weeek-access-token",
      "description": "WEEEK_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "read-only",
      "description": "READ_ONLY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "enabled-tools",
      "description": "ENABLED_TOOLS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weeek-base-url",
      "description": "WEEEK_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weeek-timeout-ms",
      "description": "WEEEK_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "max-response-chars",
      "description": "MAX_RESPONSE_CHARS",
      "password": true
    }
  ],
  "servers": {
    "weeek-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "weeek-mcp"
      ],
      "env": {
        "WEEEK_ACCESS_TOKEN": "${input:weeek-access-token}",
        "READ_ONLY": "${input:read-only}",
        "ENABLED_TOOLS": "${input:enabled-tools}",
        "WEEEK_BASE_URL": "${input:weeek-base-url}",
        "WEEEK_TIMEOUT_MS": "${input:weeek-timeout-ms}",
        "MAX_RESPONSE_CHARS": "${input:max-response-chars}"
      }
    }
  }
}

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

weeek mcp in other clients