Skip to content
VS Code

clicksend mcp server for VS Code

com.clicksend/clicksend-mcp-server

MCP for ClickSend.

client:VS Code transport:stdio runtime:npm

Install clicksend mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clicksend-username",
      "description": "CLICKSEND_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clicksend-api-key",
      "description": "CLICKSEND_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "clicksend-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@clicksend/clicksend-mcp-server"
      ],
      "env": {
        "CLICKSEND_USERNAME": "${input:clicksend-username}",
        "CLICKSEND_API_KEY": "${input:clicksend-api-key}"
      }
    }
  }
}

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

clicksend mcp server in other clients