Manifest
An MCP server that exposes functionalities to use Zomato's services.
What is Manifest?
Manifest is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server that exposes functionalities to use zomato's services.
An MCP server that exposes functionalities to use Zomato's services.
This server falls under the Business Applications category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- An MCP server that exposes functionalities to use Zomato's s
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx manifestConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Manifest
The Zomato MCP Server (manifest) is an officially published MCP server by Zomato that exposes food delivery and restaurant services as AI-callable tools. It allows AI agents and users to discover nearby restaurants, browse menus with prices, add items to a cart, place orders, and complete payments via QR code — all through natural language. It is ideal for integrating food ordering into AI workflows or building food-aware agent applications with Zomato's platform in supported regions.
Prerequisites
- An MCP-compatible client such as Claude Desktop (free or subscription) or VS Code with MCP support
- A Zomato account with delivery address configured
- MCP developer access approved by Zomato (fill out the access request form at forms.eternal.com for personal-use integrations)
- npx (Node.js) available if using the mcp-remote transport method
Request developer access
Zomato currently requires approval for MCP developer access for personal use. Fill out the access request form linked from the repository README before proceeding.
Choose your installation method
Claude subscription users can use Connectors (Settings > Connectors > Add custom connector with URL https://mcp-server.zomato.com/mcp). Free plan users must use manual configuration with mcp-remote.
Configure Claude Desktop (free plan / manual)
Open your claude_desktop_config.json and add the Zomato MCP server using the mcp-remote package to proxy the hosted MCP endpoint.
{
"mcpServers": {
"zomato-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp-server.zomato.com/mcp"
]
}
}
}Configure VS Code (manual)
Add the Zomato MCP server to your VS Code mcp.json using the HTTP type to connect directly to Zomato's hosted server.
{
"servers": {
"zomato-mcp-server": {
"url": "https://mcp-server.zomato.com/mcp",
"type": "http"
}
}
}Authenticate with your Zomato account
When you first invoke the server through your MCP client, it will initiate an OAuth flow. Complete login through the Zomato OAuth redirect URI whitelisted for your client. Ensure your delivery address is set in your Zomato profile.
Manifest Examples
Client configuration
Manual configuration for Claude Desktop (free plan) using npx mcp-remote to connect to Zomato's hosted MCP server.
{
"mcpServers": {
"zomato-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp-server.zomato.com/mcp"
]
}
}
}Prompts to try
Example prompts that use Zomato's restaurant discovery, menu browsing, and ordering tools.
- "Show me the best rated restaurants near me"
- "Find vegan restaurants within 3km of my location"
- "Show me the menu for the top pizza place nearby"
- "Add 2 margherita pizzas from Domino's to my cart"
- "Order butter chicken with naan from a nearby restaurant"
- "Reorder from my last order"Troubleshooting Manifest
OAuth redirect fails or returns an error during authentication
Zomato only whitelists specific OAuth redirect URIs. Make sure you are using a supported client (Claude Desktop, ChatGPT, VS Code Insiders, Postman). If your client URI is not on the whitelist, contact Zomato to have it added.
The mcp-remote command is not found when starting Claude Desktop
Install mcp-remote globally first with 'npm install -g mcp-remote', or ensure npx can resolve it. Node.js 18 or later is required.
Restaurant discovery returns no results
Ensure your Zomato account has a delivery address set. The server uses your account's saved location for proximity queries. Also confirm that Zomato services are available in your region.
Frequently Asked Questions about Manifest
What is Manifest?
Manifest is a Model Context Protocol (MCP) server that mcp server that exposes functionalities to use zomato's services. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Manifest?
Follow the installation instructions on the Manifest GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Manifest?
Manifest works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Manifest free to use?
Yes, Manifest is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Manifest Alternatives — Similar Business Applications Servers
Looking for alternatives to Manifest? Here are other popular business applications servers you can use with Claude, Cursor, and VS Code.
n8n
★ 189.1kA comprehensive MCP server that provides full control over n8n automation workflows through natural language. It offers 43 tools for managing workflows, executions, credentials, and data tables, with safety features like write-mode protection and dou
LobeHub
★ 77.5k🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.
Jeecgboot
★ 46.4kAI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skills 一句话画流程、设计表单、生成整套系统。内置 AI聊天、知识库、流程编排、MCP插件等,兼容主流大模型。引领「AI 生成 → 在线配置 → 代码生成 → 手工合并->AI修改」开发模式,消除 Java 项目 80% 的重复工作,提效而不失灵活。
CowAgent
★ 44.7kCowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择DeepSeek/OpenAI/Claude/Gemini/ MiniMax/Qwen/GLM/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。
Minds Platform
★ 39.2kPlatform dedicated to building an open foundation for applied Artificial Intelligence, designed for people seeking production-ready AI systems they can truly control, extend and deploy anywhere.
Astrbot
★ 32.8kAI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
Browse More Business Applications MCP Servers
Explore all business applications servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Manifest in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Manifest?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.