Skip to content
VS Code

ForgeMesh Utility Grid MCP for VS Code

io.github.forgemeshlabs/utility-grid-mcp

Discover and call 400+ practical APIs through six MCP tools with free search and x402 payments.

client:VS Code transport:stdio runtime:npm

Install ForgeMesh Utility Grid MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wallet-private-key",
      "description": "WALLET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "utility-grid-base-url",
      "description": "UTILITY_GRID_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "utility-grid-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@forgemeshlabs/utility-grid-mcp"
      ],
      "env": {
        "WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
        "UTILITY_GRID_BASE_URL": "${input:utility-grid-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

ForgeMesh Utility Grid MCP in other clients