Skip to content
VS Code

mcp flow cl for VS Code

io.github.codespar/mcp-flow-cl

MCP server for Flow.cl — Chilean PSP: hosted payment orders, Webpay, refunds, HMAC-signed API

client:VS Code transport:stdio runtime:npm

Install mcp flow cl in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "flow-api-key",
      "description": "FLOW_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "flow-secret-key",
      "description": "FLOW_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "flow-env",
      "description": "FLOW_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-flow-cl": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-flow-cl"
      ],
      "env": {
        "FLOW_API_KEY": "${input:flow-api-key}",
        "FLOW_SECRET_KEY": "${input:flow-secret-key}",
        "FLOW_ENV": "${input:flow-env}"
      }
    }
  }
}

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

mcp flow cl in other clients