Skip to content
VS Code

mcp tiny for VS Code

io.github.codespar/mcp-tiny

MCP server for Tiny ERP — products, stock, warehouses, price lists, orders, invoices, AP/AR

client:VS Code transport:stdio runtime:npm

Install mcp tiny in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tiny-api-token",
      "description": "TINY_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-tiny": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-tiny"
      ],
      "env": {
        "TINY_API_TOKEN": "${input:tiny-api-token}"
      }
    }
  }
}

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

mcp tiny in other clients