Skip to content
VS Code

ramp kit for VS Code

io.github.armandocodecr/ramp-kit

LATAM fiat ramps on Stellar for AI agents: live quotes, sandbox orders, PIX/SPEI simulation, docs

client:VS Code transport:stdio runtime:npm

Install ramp kit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "etherfuse-api-key",
      "description": "ETHERFUSE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manteca-api-key",
      "description": "MANTECA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manteca-user-id",
      "description": "MANTECA_USER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rampkit-env",
      "description": "RAMPKIT_ENV",
      "password": true
    }
  ],
  "servers": {
    "ramp-kit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ramp-kit/mcp"
      ],
      "env": {
        "ETHERFUSE_API_KEY": "${input:etherfuse-api-key}",
        "MANTECA_API_KEY": "${input:manteca-api-key}",
        "MANTECA_USER_ID": "${input:manteca-user-id}",
        "RAMPKIT_ENV": "${input:rampkit-env}"
      }
    }
  }
}

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

ramp kit in other clients