Dine-Discover-AI MCP Server

Dine-Discover-AI MCP Server

Enables conversational exploration of California restaurant data, vibe-based recommendations, and access to structured restaurant details and reviews.

Category
Visit Server

README

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.

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 databases

Setup & Installation

  1. Clone the repository:

    git clone https://github.com/FenilKaneria/Dine-Discover-AI.git
    cd Dine-Discover-AI
    
  2. Install dependencies:

    pip install -r requirements.txt
    
  3. Configure Environment Variables: Create an .env file from the example:

    cp .env.example .env
    

    Open the .env file 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-mini

Using 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=llama3

Usage

Run the Gradio Application:

python src/app.py

This 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.py

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured