Skip to content
VS Code

make mcp for VS Code

io.github.danishashko/make-mcp

Unofficial MCP server for Make.com automation - build, validate & deploy scenarios via AI

client:VS Code transport:stdio runtime:npm

Install make mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "make-api-key",
      "description": "MAKE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "make-team-id",
      "description": "MAKE_TEAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "make-api-url",
      "description": "MAKE_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "make-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "make-mcp-server"
      ],
      "env": {
        "MAKE_API_KEY": "${input:make-api-key}",
        "MAKE_TEAM_ID": "${input:make-team-id}",
        "MAKE_API_URL": "${input:make-api-url}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

make mcp in other clients