Gemini Function Calling + Model Context Protocol(MCP) Flight Search
Model Context Protocol (MCP) with Gemini 2.5 Pro. Convert conversational queries into flight searches using Gemini's function calling capabilities and MCP's flight search tools
arjunprabhulal
README
Gemini Function Calling + Model Context Protocol(MCP) Flight Search
This project demonstrates how to use Google's Gemini 2.5 Pro with function calling capabilities to interact with the mcp-flight-search
tool via Model Context Protocol (MCP). This client implementation shows how to:
- Connect to a local MCP server process (
mcp-flight-search
) using stdio communication - Use natural language prompts with Gemini 2.5 Pro to search for flights (e.g., "Find flights from Atlanta to Las Vegas on 2025-05-05")
- Let Gemini automatically determine the correct function parameters from the natural language input
- Execute the flight search using the MCP tool
- Display formatted results from the search
Features
- Natural language flight search using Gemini 2.5 Pro
- Automatic parameter extraction via function calling
- Integration with
mcp-flight-search
tool via stdio - Formatted JSON output of flight results
- Environment-based configuration for API keys
Prerequisites
Before running this client, you'll need:
- Python 3.7+
- A Google AI Studio API key for Gemini
- A SerpAPI key (used by the flight search tool)
- The
mcp-flight-search
package installed
Dependencies
This project relies on several Python packages:
-
google-generativeai: Google's official Python library for accessing Gemini 2.5 Pro and other Google AI models.
- Provides the client interface for Gemini 2.5 Pro
- Handles function calling capabilities
- Manages API authentication and requests
-
mcp-sdk-python: Model Context Protocol (MCP) SDK for Python.
- Provides
ClientSession
for managing MCP communication - Includes
StdioServerParameters
for configuring server processes - Handles tool registration and invocation
- Provides
-
mcp-flight-search: A flight search service built with MCP.
- Implements flight search functionality using SerpAPI
- Provides MCP-compliant tools for flight searches
- Handles both stdio and HTTP communication modes
-
asyncio: Python's built-in library for writing asynchronous code.
- Manages asynchronous operations and coroutines
- Handles concurrent I/O operations
- Required for MCP client-server communication
-
json: Python's built-in JSON encoder and decoder.
- Parses flight search results
- Formats output for display
- Handles data serialization/deserialization
Setup
-
Clone the Repository:
git clone https://github.com/arjunprabhulal/mcp-gemini-search.git cd mcp-gemini-search
-
Install Dependencies:
# Install required Python libraries pip install -r requirements.txt # Install the MCP flight search tool pip install mcp-flight-search
-
Set Environment Variables:
export GEMINI_API_KEY="YOUR_GEMINI_API_KEY" export SERP_API_KEY="YOUR_SERPAPI_API_KEY"
Replace the placeholder values with your actual API keys:
- Get your Gemini API key from Google AI Studio
- Get your SerpAPI key from SerpApi
Architecture
This project integrates multiple components to enable natural language flight search. Here's how the system works:
Component Interactions
-
User to Client
- User provides natural language query (e.g., "Find flights from Atlanta to Las Vegas tomorrow")
- Client script (
client.py
) processes the input
-
Client to MCP Server
- Client starts the MCP server process (
mcp-flight-search
) - Establishes stdio communication channel
- Retrieves available tools and their descriptions
- Client starts the MCP server process (
-
Client to Gemini 2.5 Pro
- Sends the user's query
- Provides tool descriptions for function calling
- Receives structured function call with extracted parameters
-
Client to MCP Tool
- Takes function call parameters from Gemini
- Calls appropriate MCP tool with parameters
- Handles response processing
-
MCP Server to SerpAPI
- MCP server makes requests to SerpAPI
- Queries Google Flights data
- Processes and formats flight information
Data Flow
-
Input Processing
User Query → Natural Language Text → Gemini 2.5 Pro → Structured Parameters
-
Flight Search
Parameters → MCP Tool → SerpAPI → Flight Data → JSON Response
-
Result Handling
JSON Response → Parse → Format → Display to User
Communication Protocols
-
Client ↔ MCP Server
- Uses stdio communication
- Follows MCP protocol for tool registration and calls
- Handles asynchronous operations
-
MCP Server ↔ SerpAPI
- HTTPS requests
- JSON data exchange
- API key authentication
-
Client ↔ Gemini 2.5 Pro
- HTTPS requests
- Function calling protocol
- API key authentication
Error Handling
The integration includes error handling at multiple levels:
- Input validation
- API communication errors
- Tool execution failures
- Response parsing issues
- Data formatting problems
Usage
Run the client:
python client.py
The script will:
- Start the MCP flight search server process
- Send your flight search query to 2.5 Pro
- Use Gemini's function calling to extract search parameters
- Execute the search via the MCP tool
- Display the formatted results
Related Projects
This client uses the mcp-flight-search
tool, which is available at:
- GitHub: arjunprabhulal/mcp-flight-search
- PyPI: mcp-flight-search
Author
For more articles on AI/ML and Generative AI, follow me on Medium: @arjun-prabhulal
License
This project is licensed under the MIT License.
Recommended Servers
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
dbt Semantic Layer MCP Server
A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
mixpanel
Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Nefino MCP Server
Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.
Vectorize
Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.
Mathematica Documentation MCP server
A server that provides access to Mathematica documentation through FastMCP, enabling users to retrieve function documentation and list package symbols from Wolfram Mathematica.
kb-mcp-server
An MCP server aimed to be portable, local, easy and convenient to support semantic/graph based retrieval of txtai "all in one" embeddings database. Any txtai embeddings db in tar.gz form can be loaded
Research MCP Server
The server functions as an MCP server to interact with Notion for retrieving and creating survey data, integrating with the Claude Desktop Client for conducting and reviewing surveys.