Skip to content
VS Code

mcp bind erp for VS Code

io.github.codespar/mcp-bind-erp

Bind ERP — Mexican cloud ERP

client:VS Code transport:stdio runtime:npm

Install mcp bind erp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bind-api-key",
      "description": "BIND_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-bind-erp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-bind-erp"
      ],
      "env": {
        "BIND_API_KEY": "${input:bind-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

mcp bind erp in other clients