Skip to content
VS Code

Hermes Grocy MCP for VS Code

io.github.rusty4444/hermes-grocy-mcp

MCP server for Grocy household ERP inventory and shopping workflows.

client:VS Code transport:stdio runtime:pypi

Install Hermes Grocy MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "grocy-base-url",
      "description": "GROCY_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "grocy-api-key",
      "description": "GROCY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "hermes-grocy-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "hermes-grocy-mcp"
      ],
      "env": {
        "GROCY_BASE_URL": "${input:grocy-base-url}",
        "GROCY_API_KEY": "${input:grocy-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

Hermes Grocy MCP in other clients