Skip to content
VS Code

mcp clip for VS Code

io.github.codespar/mcp-clip

MCP server for Clip (PayClip) — Mexico's leading acquirer: payment links, card charges, refunds

client:VS Code transport:stdio runtime:npm

Install mcp clip in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clip-auth-token",
      "description": "CLIP_AUTH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clip-base-url",
      "description": "CLIP_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-clip": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-clip"
      ],
      "env": {
        "CLIP_AUTH_TOKEN": "${input:clip-auth-token}",
        "CLIP_BASE_URL": "${input:clip-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

mcp clip in other clients