Zomato MCP

An mcp server for your food ordering needs.

Zomato MCP Server

An mcp server for your food ordering needs.

Supported Features

  • 🔎 Restaurant Discovery - Find nearby restaurants based on your location and preferences.
  • 📒 Menu Browsing - Browse through detailed menus with prices, descriptions, and ratings.
  • 🛒 Cart Creation - Add items to your cart and customize orders with ease.
  • 🥗 Food Ordering - Place orders seamlessly with order tracking support.
  • 💳 QR code payment - Complete secure payments using QR code integration.

Installation Guide

Install in VsCode

One Click Installation

Manual Installation

Add this to your mcp.json file.

{
	"servers": {
		"zomato-mcp-server": {
			"url": "https://mcp-server.zomato.com/mcp",
			"type": "http"
		}
	},
}

Install in Claude Desktop

  1. Make sure Node.js is installed

    In your terminal, check if Node.js is installed on your system by running:

    node -v
    

    If Node.js isn't installed, download it from nodejs.org.

  2. Configure Claude Desktop

  • Go to Settings > Developer

  • Click Edit config to open the claude_desktop_config.json file

  • Add the MCP server configuration to the mcpServers section

  • Paste the configuration below

  • Save the file to apply the configuration

  • Restart Claude Desktop

    Configuration:

    {
      "mcpServers": {
        "zomato-mcp": {
          "command": "npx",
          "args": [
            "mcp-remote",
            "https://mcp-server.zomato.com/mcp"
          ]
        }
      }
    }
    

Related Servers