PluginBench
MCP Server
Active
MIT

Voila Groceries MCP MCP Server

io.github.dearlordylord/voila-mcp

What is the Voila Groceries MCP MCP server?

Safe personal Voila grocery automation for search, slots, cart updates, and order history

How to install Voila Groceries MCP

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • VOILA_GUEST

    Set to 1 for guest-session behavior in registry inspection or unauthenticated discovery.

  • VOILA_AUTH_SESSION_PATH
    secret

    Absolute path to a session JSON file captured with the Voila CLI for authenticated account workflows. Read and written as one path; guest sessions are never written to it.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "voila-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@firfi/voila-mcp"
      ],
      "env": {
        "VOILA_GUEST": "<YOUR_VOILA_GUEST>",
        "VOILA_AUTH_SESSION_PATH": "<YOUR_VOILA_AUTH_SESSION_PATH>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "voila-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@firfi/voila-mcp"
      ],
      "env": {
        "VOILA_GUEST": "<YOUR_VOILA_GUEST>",
        "VOILA_AUTH_SESSION_PATH": "<YOUR_VOILA_AUTH_SESSION_PATH>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "voila-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@firfi/voila-mcp"
      ],
      "env": {
        "VOILA_GUEST": "<YOUR_VOILA_GUEST>",
        "VOILA_AUTH_SESSION_PATH": "<YOUR_VOILA_AUTH_SESSION_PATH>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "voila-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@firfi/voila-mcp"
      ],
      "env": {
        "VOILA_GUEST": "<YOUR_VOILA_GUEST>",
        "VOILA_AUTH_SESSION_PATH": "<YOUR_VOILA_AUTH_SESSION_PATH>"
      }
    }
  }
}
Claude Code
claude mcp add voila-mcp --env VOILA_GUEST=<YOUR_VOILA_GUEST> --env VOILA_AUTH_SESSION_PATH=<YOUR_VOILA_AUTH_SESSION_PATH> -- npx -y @firfi/voila-mcp

Related MCP servers

Huly MCP

Active

Huly MCP: feature-complete MCP server for Huly integration

40
TypeScript
MIT
View repository →