Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the MFR Mobile Field Report in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Connect MFR field service management to Claude AI using MCP. Query service requests, appointments, technicians, and checklists with natural language.
Try asking
Example prompts for MFR Mobile Field Report
Click any prompt to copy it. Paste into Claude, ChatGPT, Cursor, Gemini, Copilot or OpenClaw to run it against this connector.
Claude is AI and can make mistakes. Please double-check responses.
Connect MFR to Claude
Mobile Field Report (MFR) is a German field service management platform used by technicians and service companies. With AnythingMCP, you can connect MFR's OData API to Claude and manage field operations with natural language.
What You Can Do
- "Show all open service requests for this week"
- "Which technician has the most appointments today?"
- "List service objects for company Müller GmbH"
- "What checklist steps are incomplete for request SR-12345?"
- "How many hours did the team work last month?"
Setup
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
- Open
http://localhost:3000/connectors/storeand import the MFR Mobile Field Report adapter - Enter your MFR username and password
- Assign to an MCP server
Connect Claude
{
"mcpServers": {
"mfr": { "url": "http://localhost:4000/mcp" }
}
}
Available Tools
| Tool | Description |
|---|---|
mfr_list_service_requests | List work orders with OData filtering |
mfr_get_service_request | Get request details with linked data |
mfr_list_appointments | View scheduled technician appointments |
mfr_list_companies | List customer companies |
mfr_list_contacts | List contacts for companies |
mfr_list_users | List technicians and users |
mfr_list_service_objects | List equipment being serviced |
mfr_list_steps | View checklist steps |
mfr_list_time_events | Track working hours |
mfr_list_invoices | View service invoices |
OData Filtering
MFR's OData API supports powerful filtering. Claude can use expressions like:
$filter=Status eq 'Open'— Filter by status$orderby=CreatedDate desc— Sort by date$expand=Company,Appointments— Include related data$top=10— Limit results
Was this guide helpful?