Skip to content
VS Code

Veriko for VS Code

io.github.veriko-mx-labs/veriko

Valida y consulta transferencias SPEI mediante la API oficial de Veriko.

client:VS Code transport:stdio runtime:npm

Install Veriko in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "veriko-api-key",
      "description": "VERIKO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "veriko-mcp-profile",
      "description": "VERIKO_MCP_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "veriko-mcp-max-risk",
      "description": "VERIKO_MCP_MAX_RISK",
      "password": true
    }
  ],
  "servers": {
    "veriko": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@veriko-mx/mcp"
      ],
      "env": {
        "VERIKO_API_KEY": "${input:veriko-api-key}",
        "VERIKO_MCP_PROFILE": "${input:veriko-mcp-profile}",
        "VERIKO_MCP_MAX_RISK": "${input:veriko-mcp-max-risk}"
      }
    }
  }
}

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

Veriko in other clients