mcp-tellus-search
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-tellus-searchsearch for airports in London"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-tellus-search
A Model Context Protocol (MCP) server that exposes Skyscanner's Tellus (Travel API v2) to Claude.
What is MCP?
MCP (Model Context Protocol) is a protocol that lets Claude call external tools. This project packages Tellus API functions as MCP tools so Claude can search geo entities (cities, airports, hotels, etc.) directly during a conversation.
When Claude is connected to this MCP server, it can:
Look up entities by ID
Search entities by type or location
Fetch child entities of a parent (e.g. all hotels in a city)
Find nearby entities by radius
Get suggested airports for a city
Related MCP server: Geodb Cities MCP Server
How it works
Architecture
Claude Code
│
│ stdio (JSON messages)
▼
Docker Container ←── mcp.run() blocks here, waiting for requests
│
└── python src/server.py
│
└── FastMCP registers all @mcp.tool() functions
│
└── requests → Tellus API (gateway.skyscanner.net)Key concepts
@mcp.tool()decorator registers a function as an MCP tool. Claude sees the function name, docstring, and type annotations — it never sees the raw source code.mcp.run()starts the server and blocks, listening on stdin. The container stays alive for the entire Claude session (one container per session).The container is started automatically by Claude Code when it reads
.mcp.json, and destroyed on exit (--rm).
Project structure
.
├── Dockerfile # Packages the server into a Docker image
├── .mcp.json # Tells Claude Code how to launch the server
├── requirements.txt # Python dependencies installed inside the image
└── src/
└── server.py # MCP tools + Tellus API helper functionsAvailable tools
Tool | Description |
| Fetch entities by ID list (up to 200) via GET /v2/entities |
| Search entities by type/ID with optional name filter via POST /v2/search |
| Fetch child entities of a parent, auto-selects filter strategy by type |
| Fetch entities within a radius of an entity or lat/lon |
| Resolve the type of a single entity |
| Get suggested airports for a city (deprecated endpoint, limited coverage) |
|
|
|
|
|
|
Filter strategy by entity type
Entity type | Filter used |
Hotel, Airport, CarHireOffice |
|
TouristAttraction, MetroStation, District, City |
|
Build and deploy
Prerequisites
Docker Desktop installed and running
Claude Code
1. Build the image
cd /path/to/this/project
docker build -t mcp-tellus-search .docker build executes all RUN instructions in the Dockerfile (installs dependencies, copies source). The resulting image is stored in your local Docker registry.
docker run is what actually starts the container and triggers CMD ["python", "src/server.py"].
2. Configure Claude Code
Project-level (only active when Claude Code is opened in this directory):
.mcp.json is already configured:
{
"mcpServers": {
"mcp-tellus-search": {
"command": "docker",
"args": ["run", "--rm", "-i", "mcp-tellus-search"]
}
}
}Global (active in any directory):
Add to ~/.claude.json under mcpServers:
"mcp-tellus-search": {
"type": "stdio",
"command": "docker",
"args": ["run", "--rm", "-i", "mcp-tellus-search"]
}3. Restart Claude Code
Run /mcp to verify the server shows as connected.
How Claude Code finds .mcp.json
Claude Code scans upward from the current working directory for .mcp.json, the same way git looks for .git. It also loads global MCP servers from ~/.claude.json. Project-level config takes precedence over global config for servers with the same name.
Distributing the image
To share this server with others without requiring them to build from source:
# Push to Docker Hub
docker push your-username/mcp-tellus-search
# Others only need .mcp.json pointing to the image name
# Docker pulls it automatically on first runThis is the key advantage of Docker packaging: the recipient needs no Python, no pip install — just Docker and the .mcp.json config file.
Tellus API reference
Base URL:
https://gateway.skyscanner.net/travel-api/v2Docs: Travel API v2 User Guide
Use
geometry_centroidinstead ofgeometry(per API guidelines)Parallel fetch functions use
ThreadPoolExecutorwithMAX_WORKERS=10(~8x speedup)Do not use
requests.Session()in parallel code — use plainrequests.post()which is thread-safe
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/senzg/mcp-tellus-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server