Skip to content
VS Code

Synmerco for VS Code

io.github.joesrq/synmerco

Escrow, trust scores, and marketplace for AI agent commerce on 5 chains. 38 tools, 8 free.

client:VS Code transport:stdio runtime:npm

Install Synmerco in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "synmerco-api-key",
      "description": "SYNMERCO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "synmerco-base-url",
      "description": "SYNMERCO_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "synmerco": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@synmerco/mcp-server"
      ],
      "env": {
        "SYNMERCO_API_KEY": "${input:synmerco-api-key}",
        "SYNMERCO_BASE_URL": "${input:synmerco-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

Synmerco in other clients