Skip to content
VS Code

toolc for VS Code

dev.toolc/toolc

Optimizing compiler for agent tools: many MCP servers or REST APIs in, one lean endpoint out.

client:VS Code transport:stdio runtime:npm

Install toolc in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "toolc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@toolc/cli"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-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

toolc in other clients