Search for places using Google Places API
Get detailed information about a specific place
Calculate route between two locations
Get timezone information for a location
Travel Planner is a powerful integration that enables AI assistants to perform travel-related tasks using Google Maps services. It allows for location searches, place details lookup, route calculations, and timezone information retrieval, making it an essential tool for travel planning and navigation assistance. With this integration, AI models can help users find points of interest, get detailed information about specific locations, calculate travel times between destinations, and account for timezone differences when planning trips. The server leverages Google's robust mapping infrastructure to provide accurate and up-to-date travel information.
Travel Planner is a Model Context Protocol (MCP) server that integrates with Google Maps services to provide travel planning capabilities to AI assistants. It enables location searches, detailed place information, route calculations, and timezone data retrieval.
Before using the Travel Planner MCP server, you'll need:
You can obtain a Google Maps API key from the Google Cloud Console.
If you're using Claude Desktop, you can install the Travel Planner MCP server automatically using Smithery:
npx -y @smithery/cli install @GongRzhe/TRAVEL-PLANNER-MCP-Server --client claude
You can run the server directly using npx:
# With environment variable for Google Maps API
GOOGLE_MAPS_API_KEY=your_api_key npx @gongrzhe/server-travelplanner-mcp
Alternatively, you can install the package globally:
# Install globally
npm install -g @gongrzhe/server-travelplanner-mcp
# Run after global installation
GOOGLE_MAPS_API_KEY=your_api_key @gongrzhe/server-travelplanner-mcp
To use this server with Claude Desktop, add the following configuration to the "mcpServers" section of your claude_desktop_config.json
:
{
"mcpServers": {
"travel-planner": {
"command": "npx",
"args": ["@gongrzhe/server-travelplanner-mcp"],
"env": {
"GOOGLE_MAPS_API_KEY": "your_google_maps_api_key"
}
}
}
}
Once the Travel Planner MCP server is running and connected to your AI assistant, you can use it to perform various travel-related tasks:
Search for places:
Get place details:
Calculate routes:
Get timezone information:
The AI assistant will use the appropriate tools from the Travel Planner MCP server to retrieve and present the requested information.