PluginBench
MCP Server

Silpo MCP Server MCP Server

io.github.MIt9/silpo-mcp

What is the Silpo MCP Server MCP server?

MCP server for Silpo online supermarket: products, cart, delivery, recipes.

How to install Silpo MCP Server

Copy-paste configuration for popular MCP clients.

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

    Optional basket ID for server-side cart synchronization. Get from Silpo app/website.

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

Related MCP servers

ComfyUI Builder

Maintained

ComfyUI MCP server: knowledge base, workflow builder, real-time execution, models, plugins.

2
TypeScript
MIT
View repository →