Skip to content
VS Code

nory mcp server for VS Code

io.github.thememebanker/nory-mcp-server

Give any AI agent instant payment capabilities via x402 protocol on Solana

client:VS Code transport:stdio runtime:npm

Install nory mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nory-wallet-key",
      "description": "NORY_WALLET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nory-api-url",
      "description": "NORY_API_URL",
      "password": true
    }
  ],
  "servers": {
    "nory-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "nory-mcp-server"
      ],
      "env": {
        "NORY_WALLET_KEY": "${input:nory-wallet-key}",
        "NORY_API_URL": "${input:nory-api-url}"
      }
    }
  }
}

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

nory mcp server in other clients