Skip to main content
Glama

Kroger MCP Server

by CupOfOwls

🛒 Kroger MCP Server 🛍️ -- FastMCP for Kroger Shopping

A FastMCP server that provides AI assistants like Claude with seamless access to Kroger's grocery shopping functionality through the Model Context Protocol (MCP). This server enables AI assistants to find stores, search products, manage shopping carts, and access Kroger's comprehensive grocery data via the kroger-api python library.

📺 Demo

Using Claude with this MCP server to search for stores, find products, and add items to your cart:

Kroger MCP Demo

🚀 Quick Start

Prerequisites

You will need Kroger API credentials (free from Kroger Developer Portal). Visit the Kroger Developer Portal to:

  1. Create a developer account
  2. Register your application
  3. Get your CLIENT_ID, CLIENT_SECRET, and set your REDIRECT_URI

The first time you run a tool requiring user authentication, you'll be prompted to authorize your app through your web browser. You're granting permission to your own registered app, not to any third party.

Installation

Once published to PyPI, you can use uvx to run the package directly without cloning the repository:

Edit Claude Desktop's configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Linux: ~/.config/Claude/claude_desktop_config.json

Windows: %APPDATA%/Claude/claude_desktop_config.json

{ "mcpServers": { "kroger": { "command": "uvx", "args": [ "kroger-mcp" ], "env": { "KROGER_CLIENT_ID": "your_client_id", "KROGER_CLIENT_SECRET": "your_client_secret", "KROGER_REDIRECT_URI": "http://localhost:8000/callback", "KROGER_USER_ZIP_CODE": "10001" } } } }

Benefits of this method:

  • Automatically installs the package from PyPI if needed
  • Creates an isolated environment for running the server
  • Makes it easy to stay updated with the latest version
  • Doesn't require maintaining a local repository clone
Option 2: Using uv with a Local Clone

First, clone locally:

git clone https://github.com/CupOfOwls/kroger-mcp

Then, edit Claude Desktop's configuration file:

{ "mcpServers": { "kroger": { "command": "uv", "args": [ "--directory", "/path/to/cloned/kroger-mcp", "run", "kroger-mcp" ], "env": { "KROGER_CLIENT_ID": "your_client_id", "KROGER_CLIENT_SECRET": "your_client_secret", "KROGER_REDIRECT_URI": "http://localhost:8000/callback", "KROGER_USER_ZIP_CODE": "10001" } } } }
Option 3: Installing From PyPI
# Install with uv (recommended) uv pip install kroger-mcp # Or install with pip pip install kroger-mcp
Option 4: Installing From Source
# Clone the repository git clone https://github.com/CupOfOwls/kroger-mcp cd kroger-mcp # Install with uv (recommended) uv sync # Or install with pip pip install -e .

Configuration

Create a .env file in your project root or pass in env values via the JSON config:

# Required: Your Kroger API credentials KROGER_CLIENT_ID=your_client_id_here KROGER_CLIENT_SECRET=your_client_secret_here KROGER_REDIRECT_URI=http://localhost:8000/callback # Optional: Default zip code for location searches KROGER_USER_ZIP_CODE=90274

Running the Server

# With uv (recommended) uv run kroger-mcp # With uvx (directly from PyPI without installation) uvx kroger-mcp # Or with Python directly python server.py # With FastMCP CLI for development fastmcp dev server.py --with-editable .

🛠️ Features

💬 Built-In MCP Prompts

  • Shopping Path: Find optimal path through store for a grocery list
  • Pharmacy Check: Check if pharmacy at preferred location is open
  • Store Selection: Help user set their preferred Kroger store
  • Recipe Shopping: Find recipes and add ingredients to cart

📚 Available Tools

Location Tools
ToolDescriptionAuth Required
search_locationsFind Kroger stores near a zip codeNo
get_location_detailsGet detailed information about a specific storeNo
set_preferred_locationSet a preferred store for future operationsNo
get_preferred_locationGet the currently set preferred storeNo
check_location_existsVerify if a location ID is validNo
Product Tools
ToolDescriptionAuth Required
search_productsSearch for products by name, brand, or other criteriaNo
get_product_detailsGet detailed product information including pricingNo
search_products_by_idFind products by their specific product IDNo
get_product_imagesGet product images from specific perspective (front, back, etc.)No
Cart Tools
ToolDescriptionAuth Required
add_items_to_cartAdd a single item to cartYes
bulk_add_to_cartAdd multiple items to cart in one operationYes
view_current_cartView items currently in your local cart trackingNo
remove_from_cartRemove items from local cart trackingNo
clear_current_cartClear all items from local cart trackingNo
mark_order_placedMove current cart to order historyNo
view_order_historyView history of placed ordersNo
Information Tools
ToolDescriptionAuth Required
list_chainsGet all Kroger-owned chainsNo
get_chain_detailsGet details about a specific chainNo
check_chain_existsCheck if a chain existsNo
list_departmentsGet all store departmentsNo
get_department_detailsGet details about a specific departmentNo
check_department_existsCheck if a department existsNo
Profile Tools
ToolDescriptionAuth Required
get_user_profileGet authenticated user's profile informationYes
test_authenticationTest if authentication token is validYes
get_authentication_infoGet detailed authentication statusYes
force_reauthenticateClear tokens and force re-authenticationNo
Utility Tools
ToolDescriptionAuth Required
get_current_datetimeGet current system date and timeNo

🧰 Local-Only Cart Tracking

Since the Kroger API doesn't provide cart viewing functionality, this server maintains local tracking:

Local Cart Storage
  • File: kroger_cart.json
  • Contents: Current cart items with timestamps
  • Automatic: Created and updated automatically
Order History
  • File: kroger_order_history.json
  • Contents: Historical orders with placement timestamps
  • Usage: Move completed carts to history with mark_order_placed

🚧 Kroger Public API Limitations

  • View Only: The remove_from_cart and clear_current_cart tools ONLY affect local tracking, not the actual Kroger cart
  • Local Sync: Use these tools only when the user has already removed items from their cart in the Kroger app/website
  • One-Way: Items can be added to the Kroger cart but not removed through the Public API. The Partner API would allow these things, but that requires entering a contract with Kroger.
APIVersionRate LimitNotes
Authorization1.0.13No specific limitToken management
Products1.2.410,000 calls/daySearch and product details
Locations1.2.21,600 calls/day per endpointStore locations and details
Cart1.2.35,000 calls/dayAdd/manage cart items
Identity1.2.35,000 calls/dayUser profile information

Note: Rate limits are enforced per endpoint, not per operation. You can distribute calls across operations using the same endpoint as needed.

🏫 Basic Workflow

  1. Set up a preferred location:
    User: "Find Kroger stores near 90274" Assistant: [Uses search_locations tool] User: "Set the first one as my preferred location" Assistant: [Uses set_preferred_location tool]
  2. Search and add products:
    User: "Add milk to my cart" Assistant: [Uses search_products, then add_items_to_cart] User: "Add bread, eggs, and cheese to my cart" Assistant: [Uses search_products for each, then bulk_add_to_cart]
  3. Manage cart and orders:
    User: "What's in my cart?" Assistant: [Uses view_current_cart tool to see local memory] User: "I placed the order on the Kroger website" Assistant: [Uses mark_order_placed tool, moving current cart to the order history]

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

⚠️ Disclaimer

This is an unofficial MCP server for the Kroger Public API. It is not affiliated with, endorsed by, or sponsored by Kroger.

For questions about the Kroger API, visit the Kroger Developer Portal or read the kroger-api package documentation.

-
security - not tested
-
license - not tested
-
quality - not tested

A FastMCP server that provides AI assistants like Claude with seamless access to Kroger's grocery shopping functionality through the Model Context Protocol, enabling store finding, product searching, and cart management.

  1. 📺 Demo
    1. 🚀 Quick Start
      1. Prerequisites
      2. Installation
      3. Configuration
      4. Running the Server
    2. 🛠️ Features
      1. 💬 Built-In MCP Prompts
      2. 📚 Available Tools
      3. 🧰 Local-Only Cart Tracking
      4. 🚧 Kroger Public API Limitations
    3. 🏫 Basic Workflow
      1. 🤝 Contributing
        1. 📄 License
          1. ⚠️ Disclaimer

            MCP directory API

            We provide all the information about MCP servers via our MCP API.

            curl -X GET 'https://glama.ai/api/mcp/v1/servers/CupOfOwls/kroger-mcp'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server