No install? Use cloud.anythingmcp.com directly.
Sign in, install the MFR Mobile Field Report in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Manage field service operations with Mobile Field Report (MFR). Access service requests, appointments, companies, contacts, technicians, service objects, products, documents, time tracking, invoices, checklists, items, tags, qualifications, cost centers, and reports via OData API.
💡 无需安装? 直接使用 cloud.anythingmcp.com。 登录、点击 Connectors → MFR Mobile Field Report、粘贴凭证、生成 MCP API key — 完成。无 Docker、无
git clone、无本地服务器。
MFR Mobile Field Report + Gemini
Manage field service operations with Mobile Field Report (MFR). Access service requests, appointments, companies, contacts, technicians, service objects, products, documents, time tracking, invoices, checklists, items, tags, qualifications, cost centers, and reports via OData API.
前提条件
完整的设置说明已内置在连接器中 (在 store 中选择连接器时可见)。所需环境变量:
MFR_USERNAME, MFR_PASSWORD
步骤 1 — 获取凭证
Key conventions:
Date format: Use datetime'YYYY-MM-DDTHH:mm:ssZ' for all date filters (e.g. DateModified gt datetime'2025-01-01T00:00:00Z').
ID format: Entity IDs are numeric. When used in URL paths, append an 'L' suffix (e.g. /ServiceRequests(11164418048L)). The tools handle this automatically.
OData filtering: All list endpoints support $filter, $orderby, $top, $skip, $select, and $expand. Combine filters with and/or. Operators: eq, ne, gt, ge, lt, le.
…(continued in the in-app connector instructions)
步骤 2 — 安装 adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
步骤 3 — 在 Gemini 中添加连接器
Gemini CLI 从 ~/.gemini/settings.json (Windows: %APPDATA%\gemini\settings.json) 读取 MCP 服务器。添加:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- 从 AnythingMCP 获取你的 MCP API key。
- 保存文件并重启
gemini。 - 在 Gemini CLI 中运行
/mcp—MFR Mobile Field Report应显示为可用。 - Vertex AI Studio: 将
https://cloud.anythingmcp.com/mcp传入请求的tools数组,使用相同的 Bearer 头。
可用工具
| Tool | What it does |
|---|---|
mfr_list_service_requests | List service requests (work orders) |
mfr_get_service_request | Get a single service request by its numeric ID |
mfr_get_service_request_by_external_id | Find a service request by its external ID (your system's reference) |
mfr_create_service_request | Create a new service request (work order) |
mfr_update_service_request | Update an existing service request |
mfr_delete_service_request | Delete a service request by its numeric ID |
mfr_link_service_request_service_object | Link a service object (equipment/device) to a service request |
mfr_link_service_request_document | Link a document to a service request |
mfr_add_tags_to_service_request | Add a tag to a service request |
mfr_remove_tag_from_service_request | Remove a tag from a service request |
mfr_add_qualification_to_service_request | Add a required qualification to a service request |
mfr_remove_qualification_from_service_request | Remove a qualification from a service request |
mfr_list_appointments | List scheduled appointments for field technicians |
mfr_create_appointment | Create a new appointment (standard, vacation, illness, or other) |
mfr_update_appointment | Update an existing appointment |
mfr_delete_appointment | Delete an appointment by its numeric ID |
mfr_list_companies | List companies (customers/clients) |
mfr_get_company | Get a single company by its numeric ID with all details |
mfr_create_company | Create a new company (customer/client) |
mfr_update_company | Update an existing company |
mfr_delete_company | Delete a company by its numeric ID |
mfr_list_contacts | List contacts (people linked to companies) |
mfr_get_contact | Get a single contact by its numeric ID |
mfr_create_contact | Create a new contact (person) |
mfr_update_contact | Update an existing contact |
mfr_list_service_objects | List service objects (equipment, machines, devices) |
mfr_get_service_object | Get a single service object by its numeric ID |
mfr_create_service_object | Create a new service object (equipment/device) |
mfr_update_service_object | Update an existing service object |
mfr_delete_service_object | Delete a service object by its numeric ID |
(showing 30 of 71 tools — install the connector to see them all)
FAQ
Gemini 1.5 Pro 或 2.x 支持 MCP 吗? 支持 — Gemini CLI ≥ 0.4 与 Vertex AI tools API 均接受带 Bearer 头的 MCP httpUrl 连接器。
下一步
这份指南对您有帮助吗?