Skip to content
VS Code

Guesty MCP Server for VS Code

io.github.dljrealty/guesty

Guesty MCP server. 43 Guesty tools, read and write, free. Grounded replies, message-policy screen.

client:VS Code transport:stdio runtime:npm

Install Guesty MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "guesty-client-id",
      "description": "GUESTY_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "guesty-client-secret",
      "description": "GUESTY_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "guesty-mcp-license-key",
      "description": "GUESTY_MCP_LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "guesty": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "guesty-mcp-server"
      ],
      "env": {
        "GUESTY_CLIENT_ID": "${input:guesty-client-id}",
        "GUESTY_CLIENT_SECRET": "${input:guesty-client-secret}",
        "GUESTY_MCP_LICENSE_KEY": "${input:guesty-mcp-license-key}"
      }
    }
  }
}

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

Guesty MCP Server in other clients