MCP Server
io.github.pepesto-solutions/pepesto-mcp MCP Server
io.github.pepesto-solutions/pepesto-mcp
What is the io.github.pepesto-solutions/pepesto-mcp MCP server?
MCP server for the Pepesto grocery shopping API — recipe-to-cart across European supermarkets.
How to install io.github.pepesto-solutions/pepesto-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PEPESTO_API_KEYrequiredsecretPepesto API key. See the project README section "Getting an API key" for how to obtain one.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"pepesto-mcp": {
"command": "npx",
"args": [
"-y",
"@pepesto/pepesto-mcp"
],
"env": {
"PEPESTO_API_KEY": "<YOUR_PEPESTO_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"pepesto-mcp": {
"command": "npx",
"args": [
"-y",
"@pepesto/pepesto-mcp"
],
"env": {
"PEPESTO_API_KEY": "<YOUR_PEPESTO_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pepesto-mcp": {
"command": "npx",
"args": [
"-y",
"@pepesto/pepesto-mcp"
],
"env": {
"PEPESTO_API_KEY": "<YOUR_PEPESTO_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"pepesto-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@pepesto/pepesto-mcp"
],
"env": {
"PEPESTO_API_KEY": "<YOUR_PEPESTO_API_KEY>"
}
}
}
}Claude Code
claude mcp add pepesto-mcp --env PEPESTO_API_KEY=<YOUR_PEPESTO_API_KEY> -- npx -y @pepesto/pepesto-mcpRelated MCP servers
Turn any shopping list into a ready-to-checkout grocery cart across 26 European supermarkets.
View repository →