Claim Pilot MCP Server
Click on "Deploy 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., "@Claim Pilot MCP Serverwhat's the fraud score for claim CLM-1001?"
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.
Claim Pilot MCP Server
Insurance tools exposed via MCP (Model Context Protocol) and HTTP API.
Architecture

This service is the MCP Server tier: it exposes tools (policy search, claim lookup, fraud score, etc.) that the orchestrator agents call. The diagram shows integrations from MCP tools to operational systems and data stores.
Related MCP server: bima-mcp
Tools
policy_search - Search policy clauses by policy ID and query
claim_lookup - Get claim details by claim ID
fraud_score - Calculate fraud score for a claim
Tools are registered on a FastMCP server (claim_pilot_mcp_server.mcp_app:mcp). The same implementations power both transports below.
Local Development
pip install -e ".[dev]"
make run # HTTP API on port 8001
make test # Run tests
make lint # Run linterHTTP API
make run starts FastAPI with:
Legacy REST helpers (used by Claim Pilot AI today):
POST /tools/...with query parametersMCP over HTTP: FastMCP’s ASGI app is mounted at
/mcp(for examplehttp://localhost:8001/mcpfor MCP clients that support streamable HTTP)
# Policy search
curl -X POST "http://localhost:8001/tools/policy-search?policy_id=AUTO-12345&query=commercial+use"
# Fraud score
curl -X POST "http://localhost:8001/tools/fraud-score?claim_id=CLM-1001"
# Claim lookup
curl -X POST "http://localhost:8001/tools/claim-lookup?claim_id=CLM-1001"
# Health check
curl http://localhost:8001/healthMCP Server (stdio)
python -m claim_pilot_mcp_server.serverOr with the FastMCP CLI (stdio transport):
fastmcp run claim_pilot_mcp_server.mcp_app:mcpDocker
Private git+https dependencies need a PAT as a build-arg (see Makefile / .env).
docker build --build-arg GITHUB_TOKEN="$GITHUB_TOKEN" -t claim-pilot-mcp-server .
docker run -p 8001:8001 --env-file .env claim-pilot-mcp-serverVersioning
Calendar Versioning (CalVer): YYYY.MM.PATCH
# Release
git tag v2026.05.1
git push origin v2026.05.1Maintainer
Justin Weber — Blue Lambda Technologies
This repository is maintained for the Claim Pilot platform (Blue Lambda University).
Email: nucreaxion@aol.com
For professional inquiries, security-sensitive reports, or questions about this component, please reach out via the address above.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for medicare-coverage
Commercial auto insurance MCP server for NYC TLC for-hire vehicles. 33 tools, submission to bind.
MCP server for detecting and redacting PII (Personally Identifiable Information) in PDF documents.
保险产品搜索、推荐、保费试算、核保预检。覆盖65家保司483款产品。China insurance MCP server.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for healthcare claims workflow scoring, validation, and feedback, supporting denial risk, prior authorization, and reimbursement assessment.8MIT
- AlicenseAqualityAmaintenanceMCP server for Kenya insurance intelligence, providing tools to query insurance products, NHIF coverage, and parametric crop risk scoring.26MIT
- FlicenseNot gradedqualityBmaintenanceMCP server that reviews insurance claims against policy documents, providing coverage decisions, policy clause retrieval, claim history lookup, coverage rule checks, and fraud risk scoring via four tools.-
- AlicenseNot gradedqualityCmaintenanceMCP server that helps AI agents analyze medical insurance claims, flag anomalies, score risk, and suggest next actions.MIT