Airfield Directory
Provides airfield aeronautical information for general aviation private pilots like runways, fuel prices, landing fees, weather, webcams and more
Airfield Directory FAQ
Quick links:
- General
- Using Airfield Directory
- Contributing Content
- API, MCP, Exports & Integrations
- Data, Licensing & Attribution
- Support, Legal & Privacy
General
What is Airfield Directory?
Airfield Directory is a free, non-commercial, open database for airfield Pilot Reports (PIREPs), landing fees, and fuel prices, powered by the general aviation community. Our goal is to provide free, community-driven aviation information to pilots worldwide. Think of it as Wikipedia for GA airfields.
Is Airfield Directory free to use?
Yes. Airfield Directory is completely free to use and will always stay ad-free and tracking-free. We believe aviation data should be accessible to everyone in the pilot community.
Using Airfield Directory
What can I do on Airfield Directory?
- Sign in with Apple, Google, or Amazon to create and like PIREPs.
- Read auto-translated PIREPs in at least German and English while keeping the original text available.
- Set your preferred profile language to see PIREPs in the language you want.
- Add an Aerops-registered tailsign to see personalized landing fees.
- Set custom arrival and departure dates for more exact pricing information.
- Explore airfields visually on the Browse page, including fullscreen mode on mobile.
Why do the markers on the map have different colors?
- Green: Average rating 4-5 stars
- Yellow: Average rating 2.3-3.5 stars
- Red: Average rating <= 2 stars
- Blue: No PIREPs and/or only AI-generated summaries
Why do some markers have a white center with a colored outline?
Following ICAO aeronautical chart conventions, solid-filled markers represent airfields with paved runways (asphalt, concrete), while white-filled markers with a colored outline represent airfields with unpaved runways (grass, gravel, dirt). The outline color still indicates the rating, just like it does for paved airfields.
Contributing Content
How can I contribute PIREPs?
Create an account by signing in with Apple, Google, or Amazon, then visit any airfield page to submit your pilot report. Your contributions help other pilots make better decisions.
What happens to my contributions?
All PIREPs and comments you submit are:
- Published publicly under the CC BY-SA 4.0 license, which means that by posting, you grant everyone a permanent, worldwide license under CC BY-SA 4.0.
- Available for others to use, share, and adapt with proper attribution and resharing under the same license.
- Covered by an irrevocable license, so even if you later delete a PIREP, existing copies remain usable under CC BY-SA 4.0.
Can I delete or modify my PIREPs?
Yes. You can delete or change your PIREPs through the website interface at any time. Please note:
- The CC BY-SA 4.0 license is irrevocable.
- Copies already made by others may persist.
- The license remains valid for any copies made before deletion.
What about the "AI-generated, may contain errors" badge?
To create an initial set of reports, we used AI in August 2025 to generate some starter PIREPs. These are clearly marked with an "AI-generated, may contain errors" badge. We encourage the community to replace or supplement them with real pilot reports.
Who is responsible for PIREPs and comments?
The respective author. You are legally responsible for the content you submit, including PIREPs and comments. Please post only lawful, factual information and do not include personal data of third parties. We moderate after the fact and may remove content, but we do not perform general pre-moderation.
How can I report problematic content?
Email [email protected] with the content link, a brief explanation, and your contact details. We will review it promptly under a notice-and-takedown process.
API, MCP, Exports & Integrations
Is there an API?
Yes. You can access airfield data in JSON format by adding .json to any airfield URL.
Example: https://airfield.directory/airfield/EDAZ.json. Please review the licensing terms in the JSON response.
If you need a bulk download, full JSON exports of all PIREPs are available in the S3 bucket airfield-directory-pirep-export:
aws s3api list-objects-v2 --bucket airfield-directory-pirep-export --no-sign-request
curl -LO "https://airfield-directory-pirep-export.s3.amazonaws.com/airfield-directory-pireps-export-latest.json.gz"
# Filter out AI-generated PIREPs with jq:
gunzip -c airfield-directory-pireps-export-latest.json.gz | jq '.pireps
| with_entries(
.value |= (
to_entries
| map(select(.value.ai_generated != true))
| from_entries
)
)
| with_entries(select(.value != {}))'
# Count the current non-AI PIREPs:
gunzip -c airfield-directory-pireps-export-latest.json.gz | jq '
.pireps
| [ .[]
| .[]
| select(.ai_generated != true)
]
| length'
# Extract PIREPs for a single airfield (for example EDAZ):
gunzip -c airfield-directory-pireps-export-latest.json.gz | jq '.pireps.EDAZ'
What data is included in the JSON API?
- Airfield information from OpenAIP
- Aerops data, when available, including fuel prices, landing fees, and parking fees
- Community PIREPs
- License information for each data section
What data is included in the S3 export?
- Community PIREPs including license information
How do I import PIREPs into ForeFlight?
You can import our ForeFlight content packs like this:
- Download a ZIP from S3, for example:
- Replace
enwithde,es,fr,it, ornlas needed. - AirDrop the ZIP to your iPad and open it with ForeFlight.
We publish two pack variants per locale:
airfield-directory-pireps-foreflight-<locale>.zipfor human-written PIREPs onlyairfield-directory-pireps-foreflight-with-ai-<locale>.zipincluding AI/root PIREPs
Is there an MCP server?
Yes. Airfield Directory exposes a read-only remote MCP endpoint at https://airfield.directory/mcp.
How do I use it with claude.ai?
Claude on the web supports remote MCP servers via Connectors (beta). Go to Settings > Connectors, click Add custom connector, enter a name (e.g. "Airfield Directory") and the URL https://airfield.directory/mcp, then click Add. No authentication is required. After adding, click Configure next to the connector and set all tools to Always allow so Claude can use them without prompting each time.
How do I use it with Claude Desktop?
A known-working claude_desktop_config.json setup uses the mcp-remote wrapper to bridge Claude Desktop to the remote HTTP MCP server:
{
"mcpServers": {
"airfield-directory": {
"command": "npx",
"args": ["mcp-remote", "https://airfield.directory/mcp"]
}
}
}
If you edit the JSON file directly, restart Claude Desktop afterward.
How do I use it with Claude Code?
Project-scoped Claude Code configuration can live in .mcp.json:
{
"mcpServers": {
"airfield-directory": {
"type": "http",
"url": "https://airfield.directory/mcp"
}
}
}
If you prefer user scope, use the same entry in ~/.claude.json.
How do I use it with Codex?
The simplest option is:
codex mcp add airfield-directory --url https://airfield.directory/mcp
You can also configure it manually in ~/.codex/config.toml or .codex/config.toml:
[mcp_servers.airfield-directory]
url = "https://airfield.directory/mcp"
How do I use it with Gemini?
The Gemini web app does not support custom MCP servers yet. You can connect via the Gemini CLI by adding this to ~/.gemini/settings.json (user scope) or .gemini/settings.json (project scope):
{
"mcpServers": {
"airfield-directory": {
"httpUrl": "https://airfield.directory/mcp"
}
}
}
How do I use it with ChatGPT?
ChatGPT supports remote MCP servers via developer mode (beta). This is available for Pro, Plus, Business, Enterprise, and Education accounts on the web.
- Go to Settings > Apps > Advanced settings and enable Developer mode.
- Click Create app and enter the MCP server URL:
https://airfield.directory/mcp. - Set authentication to None (Airfield Directory is a public, read-only server).
- In a new chat, click + in the composer, select More, then choose Developer mode and enable the Airfield Directory app.
Is personal data exposed in the API?
No. We take privacy seriously:
- Email addresses are never exposed.
- Only SHA256 hashes and display names are included.
- Gravatar usage also relies on SHA256 hashes.
Data, Licensing & Attribution
Where does the data come from?
Our data comes from three main sources:
- Airfield data from OpenAIP, licensed under CC BY-NC 4.0
- Pricing data from Aerops, which is proprietary and not for redistribution
- PIREPs from our community of pilots, licensed under CC BY-SA 4.0
Can I use the data for my own projects?
That depends on which data you want to use:
OpenAIP Airfield Data (CC BY-NC 4.0)
- ✅ Free for non-commercial use
- ❌ Not for commercial use
- Required attribution: "Data used comes from OpenAIP and is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. Visit https://www.openaip.net and contribute to better aviation data, free for everyone to use and share." Check their site before you reuse the data.
Aerops Pricing Data
- ❌ Not for redistribution (commercial or non-commercial)
- This data is copyright © Aerops and shown here with permission
- Always contact the FBO directly for current pricing
Community PIREPs (CC BY-SA 4.0)
- ✅ Free for any use, including commercial use
- ✅ Can be modified and redistributed
- Required attribution: "Community contributions from Airfield Directory (https://airfield.directory), licensed under CC BY-SA 4.0. You must give appropriate credit to the Author and Airfield Directory, provide a link to the license, and indicate if changes were made."
- Important: If you modify or build upon PIREPs, you must distribute your work under the same CC BY-SA 4.0 license
How should I attribute Airfield Directory data?
If you use data from our JSON API, S3 bucket, or website, please use one of the following forms:
Full attribution (recommended)
Data from Airfield Directory (https://airfield.directory) and community contributors. Includes: OpenAIP data (CC BY-NC 4.0, https://www.openaip.net), and community PIREPs (CC BY-SA 4.0).
Short attribution (if space is limited)
Data: Airfield Directory, OpenAIP (CC BY-NC 4.0), Aerops, Community (CC BY-SA 4.0)
Support, Legal & Privacy
How can I report issues or suggest features?
Please use the GitHub issue tracker to report issues or suggest features. We welcome community feedback.
I found incorrect data. What should I do?
- For airfield data errors, report them to OpenAIP via their GitHub tracker at https://github.com/openAIP/openaip/issues.
- For Aerops pricing errors, contact the FBO directly because displayed prices are cached and may be outdated.
- For PIREP issues, submit a new PIREP with the correct information.
- For anything else, send us an email.
How is my personal data handled?
Please see our Privacy Policy for detailed information about data handling.
What are the Terms of Service?
You can find our complete Terms of Service on the Terms of Service page.
संबंधित सर्वर
Mercado Pago
Mercado Pago's official MCP server, offering tools to interact with our API, simplifying tasks and product integration.
macOS Utilities
Provides macOS utility tools for AI assistants, including sending native notifications with project context.
CognitiveCompass MCP
A cognitive framework selector to help choose the right mental models and thinking frameworks for any situation.
TRIGGERcmd
Runs commands on your computers remotely.
PPT-Agent
Create, edit, and manage PowerPoint presentations using large language models.
Shortcuts
Access and run Apple Shortcuts. Allows AI assistants to list, view, and execute your shortcuts.
Xero
Interact with the accounting data in your business using our official MCP server
Pandoc
MCP server for seamless document format conversion using Pandoc, supporting Markdown, HTML, and plain text, with other formats like PDF, csv and docx in development.
Trello
Manage and interact with Trello boards, lists, and cards.
MCP-MD-PDF: Markdown to Word/PDF Converter
A simple, reliable Model Context Protocol (MCP) server that converts Markdown files into professional Word (.docx) and PDF documents — with full support for .dotx templates.