Skip to content
VS Code

mcp konduto for VS Code

io.github.codespar/mcp-konduto

MCP server for Konduto — Brazilian fraud prevention: order risk scoring, device intel, lists

client:VS Code transport:stdio runtime:npm

Install mcp konduto in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "konduto-api-key",
      "description": "KONDUTO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "konduto-base-url",
      "description": "KONDUTO_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-konduto": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-konduto"
      ],
      "env": {
        "KONDUTO_API_KEY": "${input:konduto-api-key}",
        "KONDUTO_BASE_URL": "${input:konduto-base-url}"
      }
    }
  }
}

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

mcp konduto in other clients