Skip to content
VS Code

mcp nfe io for VS Code

io.github.codespar/mcp-nfe-io

MCP server for NFe.io — NF-e, NFS-e, CNPJ, CEP

client:VS Code transport:stdio runtime:npm

Install mcp nfe io in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nfeio-api-key",
      "description": "NFEIO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nfeio-company-id",
      "description": "NFEIO_COMPANY_ID",
      "password": true
    }
  ],
  "servers": {
    "mcp-nfe-io": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-nfe-io"
      ],
      "env": {
        "NFEIO_API_KEY": "${input:nfeio-api-key}",
        "NFEIO_COMPANY_ID": "${input:nfeio-company-id}"
      }
    }
  }
}

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

mcp nfe io in other clients