METAR MCP Server
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., "@METAR MCP ServerGet the current METAR for KJFK"
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.
METAR MCP Server
MCP server for fetching and parsing METAR aviation weather data from NOAA's Aviation Weather Center.
Installation
Poetry (Development)
poetry installDocker (Production)
docker-compose up -dRelated MCP server: Aviation Weather MCP Server
Usage
MCP Client Configuration
Poetry
Add to your MCP client configuration file:
{
"mcpServers": {
"metar": {
"command": "poetry",
"args": ["run", "python", "/path/to/metarmcp/server.py"],
"cwd": "/path/to/metarmcp"
}
}
}Docker
Add to your MCP client configuration file:
{
"mcpServers": {
"metar": {
"command": "docker",
"args": ["exec", "-i", "metar-mcp-server", "python", "server.py"]
}
}
}Running Tests
poetry run pytest test_metar.py -vDocker Commands
# Build and start
docker-compose up -d
# View logs
docker-compose logs -f
# Stop
docker-compose down
# Rebuild
docker-compose up -d --buildTools
fetch_metar
Fetch raw METAR data for an airport by ICAO code.
Parameters:
icao_code(string): Airport code (e.g., EFHK, KJFK, EGLL)
parse_metar
Parse raw METAR string into structured JSON.
Parameters:
metar(string): Raw METAR string
Returns:
{
"station": "EFHK",
"time": "021720Z",
"wind": {"direction": 180, "speed_kt": 12},
"visibility": "9999",
"temperature": 12,
"dewpoint": 8,
"pressure_hPa": 1013,
"clouds": ["FEW020", "BKN050"]
}get_cached_metar
Get METAR data with 30-minute caching.
Parameters:
icao_code(string): Airport code
Returns:
Cached data if fresh (<30 min)
Fresh data from API if cache expired
Features
Fetch real-time METAR and TAF data from NOAA
Parse METAR/TAF into structured JSON
Human-readable formatting with descriptions
SQLite caching (30-minute TTL)
Full test coverage
Docker support with security best practices
Data Source
NOAA Aviation Weather Center: https://aviationweather.gov/
License
MIT
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/mangobanaani/metarmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server