Skip to content
VS Code

oromi agent services for VS Code

io.github.oromi-uk/oromi-agent-services

25 pay-per-call UK data & verification tools for AI agents. x402 USDC on Base; free quote mode.

client:VS Code transport:stdio runtime:npm

Install oromi agent services in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "buyer-private-key",
      "description": "BUYER_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "oromi-origin",
      "description": "OROMI_ORIGIN",
      "password": true
    }
  ],
  "servers": {
    "oromi-agent-services": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "oromi-agent-services-mcp"
      ],
      "env": {
        "BUYER_PRIVATE_KEY": "${input:buyer-private-key}",
        "OROMI_ORIGIN": "${input:oromi-origin}"
      }
    }
  }
}

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

oromi agent services in other clients