Travel Company MCP Server
Enables Claude to access and manage a travel company's customer data, trip history, and information requests. Supports searching customers, querying trips by destination or date, and tracking customer inquiries through natural language.
README
Travel Company MCP Server
An MCP (Model Context Protocol) server that provides Claude with access to a travel company's customer data, trip history, and information requests.
Features
- Customer Management: Search and retrieve customer profiles
- Trip History: Query past and upcoming trips by customer or destination
- Request Tracking: Manage customer inquiries and follow-up requests
Requirements
- Python 3.10 or higher
- pip package manager
Installation
-
Clone or download this repository
-
(Optional) Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate -
Install dependencies:
pip install -r requirements.txt -
Initialize the database:
python -m src.seed_data
Running the Server
The MCP server is designed to be run by Claude Desktop via stdio transport:
python -m src.server
Configuration for Claude Desktop
Add this to your Claude Desktop MCP configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"travel-company": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "/path/to/mcpdemo"
}
}
}
Available Tools
Customer Tools
search_customers: Search for customers by name, email, phone, or IDget_customer_profile: Get detailed customer profile with trip statistics
Trip Tools
search_trips: Search trips by destination, date range, or statusget_trip_history: Get trip history for a specific customer
Request Tools
search_requests: Search information requests by various criteriaget_pending_requests: Get pending customer requests for follow-up
Example Queries
Try asking Claude:
- "Show me all customers named John"
- "What trips has customer ID 5 taken?"
- "List all pending requests from the last 7 days"
- "Find trips to Paris in 2024"
- "Show me the profile for customer@email.com"
Project Structure
mcpdemo/
├── src/
│ ├── server.py # Main MCP server
│ ├── database.py # Database layer
│ ├── seed_data.py # Demo data generator
│ └── tools/ # Tool implementations
├── data/ # SQLite database
├── config/ # Configuration files
└── logs/ # Server logs
Development
The server uses SQLite for storage with demo data including:
- 100+ customer records
- 200+ trip records
- 50+ information requests
All data is synthetic and for demonstration purposes only.
License
MIT
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.