Skip to content
VS Code

testlink mcp for VS Code

io.github.eason0in/testlink-mcp

AI-friendly, safety-first TestLink MCP server

client:VS Code transport:stdio runtime:npm

Install testlink mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "testlink-url",
      "description": "TESTLINK_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "testlink-dev-key",
      "description": "TESTLINK_DEV_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "testlink-demo-mode",
      "description": "TESTLINK_DEMO_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "testlink-write-enabled",
      "description": "TESTLINK_WRITE_ENABLED",
      "password": true
    }
  ],
  "servers": {
    "testlink-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "testlink-mcp"
      ],
      "env": {
        "TESTLINK_URL": "${input:testlink-url}",
        "TESTLINK_DEV_KEY": "${input:testlink-dev-key}",
        "TESTLINK_DEMO_MODE": "${input:testlink-demo-mode}",
        "TESTLINK_WRITE_ENABLED": "${input:testlink-write-enabled}"
      }
    }
  }
}

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

testlink mcp in other clients