Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

This MCP server provides tools for developers to query, create, and manage test data for the EasyAirClaim application, including customers and flight delay claims.

README.md

EasyAirClaim MCP Server

Live site: https://claimplane.com — Flight compensation platform helping passengers claim up to €600 under EU261.

Model Context Protocol (MCP) Server for EasyAirClaim development and testing.

⚠️ Development Only

This server is for DEVELOPMENT AND TESTING ONLY!

  • Full database access without authentication
  • Never use with production data
  • Only connect to development/test databases

Features

  • 🔍 Query Data: Check customers, claims, files existence
  • Create Test Data: Quickly generate realistic test scenarios
  • 🔄 Manage Claims: Update statuses, add notes, track workflow
  • 🛠️ Dev Utilities: Seed data, reset database, validate integrity

Quick Start

1. Start the Server

cd /home/david/easyairclaim-mcp
cp .env.example .env
docker-compose up -d

2. Configure Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "easyairclaim-dev": {
      "command": "curl",
      "args": ["-N", "-H", "Accept: text/event-stream", "http://localhost:39128/sse"]
    }
  }
}

Restart Claude Desktop.

3. Test Connection

In Claude Desktop: `` Check the EasyAirClaim MCP server health ``

Available Tools (18)

Health & System

  • health_check - Server and database connectivity
  • get_database_stats - Entity counts and statistics
  • get_environment_info - Configuration details

Customer Management

  • create_customer - Create new customer
  • get_customer - Get customer by ID
  • get_customer_by_email - Find by email
  • list_customers - Paginated list
  • delete_customer - Remove customer

Claim Management

  • create_claim - Create claim with EU261 calculation
  • get_claim - Get claim details
  • list_claims - List with filters
  • transition_claim_status - Update status
  • add_claim_note - Add admin note

Development Utilities

  • seed_realistic_data - Generate test data
  • create_test_scenario - Create customer + claim
  • reset_database - Clear test data (⚠️ destructive)
  • validate_data_integrity - Check for issues

Example Usage

# Check if customer exists
Is customer test@example.com in the database?

# Create test data
Create a customer and a delayed Lufthansa flight claim

# List claims
Show me all claims in 'under_review' status

# Update claim
Move claim CLM-12345 to approved status

# Seed data
Create 10 realistic test claims

# Get overview
Show me database statistics

Architecture

  • FastAPI with SSE support for MCP protocol
  • Direct SQLAlchemy connection to EasyAirClaim database
  • Imports main app models/services (read-only)
  • Docker container with health checks

Project Structure

easyairclaim-mcp/
├── server.py              # MCP server with SSE endpoint
├── config.py              # Configuration management
├── database.py            # Async database connection
├── tools/                 # MCP tool implementations
│   ├── health_tools.py    # System tools
│   ├── customer_tools.py  # Customer management
│   ├── claim_tools.py     # Claim management
│   └── dev_tools.py       # Development utilities
├── docker-compose.yml     # Container configuration
├── Dockerfile             # Container image
├── requirements.txt       # Python dependencies
└── MCP_USAGE_GUIDE.md     # Comprehensive guide

Configuration

Edit .env file:

ENVIRONMENT=development
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/flight_claim
MCP_PORT=39128
ENABLE_DESTRUCTIVE_OPS=true

Ports

  • 39128 - MCP SSE endpoint
  • 8083 - Status dashboard (optional)

Safety Features

  • Environment validation (blocks production)
  • Destructive operation guards
  • Read-only main app code mount
  • Health check monitoring

Troubleshooting

Server not responding

docker logs easyairclaim-mcp-server
docker-compose restart

Database connection issues

Check that main app database is running: ``bash docker ps | grep postgres ``

Tool errors in Claude

  • Verify parameter types
  • Check UUID format for IDs
  • Use YYYY-MM-DD date format
  • Use uppercase IATA airport codes

Documentation

See MCP_USAGE_GUIDE.md for:

  • Detailed tool documentation
  • Usage examples
  • Development workflows
  • Troubleshooting guide

Development

Run locally (without Docker)

python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
python server.py

View logs

docker-compose logs -f

Stop server

docker-compose down

Security Note

This MCP server has:

  • ❌ No authentication
  • ❌ No authorization
  • ❌ No rate limiting
  • ✅ Full database access

NEVER connect to production databases or use with real customer data!

---

Version: 1.0.0 Created: 2026-01-14 Location: /home/david/easyairclaim-mcp/

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Databases servers.