Dine-Discover-AI MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Dine-Discover-AI MCP ServerRecommend a cozy Italian restaurant in Los Angeles."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Dine-Discover-AI
Dine-Discover-AI is a conversational ReAct agent designed to act as an expert AI guide to California's vibrant restaurant scene. Built with the Model Context Protocol (MCP), it enables intelligent exploration of structured restaurant details, vibe-based recommendations, and detailed user reviews.
The project is built to be completely LLM-agnostic. It uses the universal OpenAI API format, which means you can plug in any open-source or local model (via Ollama, LMStudio, vLLM) or use popular cloud providers (like OpenAI, Groq, TogetherAI, etc.).
Features
Conversational Interface: Chat directly with the AI via a beautiful Gradio web interface.
Vibe-Based Recommendations: Look for restaurants using descriptive keywords like "moody," "romantic," or "zen" (semantic search).
Structured Data Retrieval: Instantly pull details like rating, price range, and signature dishes for specific spots.
Detailed Reviews: Access full user reviews and image descriptions for a deeper understanding of the dining experience.
Agentic Architecture: Powered by Langchain and MCP for modular tool use, allowing the AI to call functions and query data intelligently.
Related MCP server: Agentic Commerce MCP Demo
Project Structure
Dine-Discover-AI/
├── .env # Environment variables (copy from .env.example)
├── requirements.txt # Python dependencies
├── src/ # Source code
│ ├── app.py # Main Gradio application & ReAct Agent
│ ├── server.py # MCP Server exposing tools and resources
│ ├── client.py # MCP Client demo/utility
│ └── restaurant_data_management.py # Utility to manage structured JSON data
└── data/ # Application data
├── raw/ # Original text and image data
└── processed/ # Extracted & structured JSON databasesSetup & Installation
Clone the repository:
git clone https://github.com/FenilKaneria/Dine-Discover-AI.git cd Dine-Discover-AIInstall dependencies:
pip install -r requirements.txtConfigure Environment Variables: Create an
.envfile from the example:cp .env.example .envOpen the
.envfile and set up your LLM configuration. See the section below for details.
LLM Configuration
Because this project uses the standard OpenAI SDK and Langchain-OpenAI, you can run it with any model!
Using OpenAI (Default):
Set the following in your .env:
OPENAI_API_KEY=sk-your-openai-key
MODEL_NAME=gpt-4o-miniUsing Local/Open-Source Models (Ollama, LMStudio, etc): If you have a local server running (for instance, Ollama on port 11434), you can point the app to it by changing the base URL.
OPENAI_API_KEY=ollama # some local servers require a dummy key
OPENAI_API_BASE=http://localhost:11434/v1
MODEL_NAME=llama3Usage
Run the Gradio Application:
python src/app.pyThis will start the Dine-Discover-AI interface. Open the provided local URL in your browser to start chatting!
Testing the MCP Server/Client: If you want to test the server tools individually without the Gradio UI:
python src/client.pyThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/FenilKaneria/Dine-Discover-AI'
If you have feedback or need assistance with the MCP directory API, please join our Discord server