Skip to content
VS Code

connskill growth mcp for VS Code

io.github.conn-skill/connskill-growth-mcp

Local market checks, rankings and keyword research as JSON, paid per call via x402 in USDC on Base.

client:VS Code transport:stdio runtime:npm

Install connskill growth mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "x402-wallet-key",
      "description": "X402_WALLET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x402-max-usd",
      "description": "X402_MAX_USD",
      "password": true
    }
  ],
  "servers": {
    "connskill-growth-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@connskill/mcp-growth-services"
      ],
      "env": {
        "X402_WALLET_KEY": "${input:x402-wallet-key}",
        "X402_MAX_USD": "${input:x402-max-usd}"
      }
    }
  }
}

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

connskill growth mcp in other clients