Globetrotter MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"globetrotter-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Spring Boot-based MCP (Model Context Protocol) server for the Globetrotter Travel Application.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in maps
Real-time BART departures, trip planning, fares, stations, and advisories.
A Model Context Protocol (MCP) server providing TomTom's location services, search, routing, and traffic data to AI agents.
MCP server for the VesselAPI — maritime vessel tracking, port events, emissions, and navigation data
Global weather API: forecasts, historical data, marine, ski, astronomy and timezone.
MCP Security Weekly
Get CVE alerts and security updates for Globetrotter Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Spring Boot-based MCP (Model Context Protocol) server for the Globetrotter Travel Application.
This MCP server provides a standardized interface for AI assistants to interact with the Globetrotter travel system, enabling them to search for flights, manage bookings, and access travel-related information.
mvn clean install
mvn spring-boot:run
The server will start on port 8082 by default.
# Build the Docker image
docker build -t globetrotter-mcp-server .
# Run the container
docker run -p 8082:8082 globetrotter-mcp-server
GET /api/mcp/health - Server health statusGET /api/mcp/info - Server information and capabilitiesGET /actuator/health - Spring Boot health checkGET /actuator/info - Application informationGET /actuator/metrics - Application metricsThe application can be configured using the application.yml file or environment variables:
server:
port: 8082
mcp:
server:
name: globetrotter-mcp-server
version: 1.0.0
description: MCP Server for Globetrotter Travel Application
src/
├── main/
│ ├── java/
│ │ └── com/globetrotter/mcp/
│ │ ├── controller/
│ │ ├── service/
│ │ ├── model/
│ │ └── McpServerApplication.java
│ └── resources/
│ └── application.yml
└── test/
└── java/
└── com/globetrotter/mcp/
controller packagemodel packageservice packagetest directoryThis project is licensed under the MIT License.