fieldroutes_mcp
Click on "Install 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., "@fieldroutes_mcpFind customers with unpaid balances over 30 days"
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.
fieldroutes_mcp
MCP server for the FieldRoutes pest-control / lawn-care operations platform — talk to your data from Claude, Cursor, or any MCP client.
FieldRoutes (a ServiceTitan company) is used by 1,700+ pest-control, lawn-care, and pool-care companies to manage customers, recurring service subscriptions, appointments, routes, and invoices. This server wraps their public API and exposes it through the Model Context Protocol.
What you can do with it
You: "Find every customer with an unpaid balance older than 30 days."
Claude: *calls search_customers with balance_min + balance_age_days filters*
You: "Cancel tomorrow's appointment for customer 12345 — they just called."
Claude: *calls cancel_appointment with a reason string*
You: "Add a note to ticket 67890 that says 'follow up next week'."
Claude: *calls create_note with entity='ticket', entity_id=67890*Related MCP server: housecallpro-mcp
Tools exposed
Tool | Purpose |
| Verify credentials work |
| Filter by name, phone, email, balance, balance age, office |
| Fetch one customer record |
| Create a new customer record |
| Update arbitrary customer fields |
| Filter by customer, date range, status |
| Cancel with reason |
| Recurring pest-control / lawn-care contracts |
| Service routes by date / office |
| Invoices (FieldRoutes calls them "tickets") |
| Attach a note to any entity (customer/ticket/appointment) |
11 tools covering the most-used FieldRoutes workflows.
Install
pip install fieldroutes_mcpConfigure
Generate an API key pair at https://app.fieldroutes.com (Settings -> API). Both fields are required on every request.
export FIELDROUTES_MCP_AUTHENTICATION_KEY="your-key-here"
export FIELDROUTES_MCP_AUTHENTICATION_TOKEN="your-token-here"Use with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"fieldroutes_mcp": {
"command": "fieldroutes_mcp",
"env": {
"FIELDROUTES_MCP_AUTHENTICATION_KEY": "...",
"FIELDROUTES_MCP_AUTHENTICATION_TOKEN": "..."
}
}
}
}How it works
FieldRoutes' public API is a single endpoint that takes POST requests in the shape /{entity}/{action} with a JSON body containing the operation parameters plus authentication fields. Every response uses a {success, result, errorMessage} envelope.
This server wraps that pattern in:
A typed exception hierarchy (
FieldRoutesAuthError,FieldRoutesNotFoundError,FieldRoutesRateLimitError,FieldRoutesConnectionError,FieldRoutesAPIError).Exponential-backoff retry on 429/5xx.
One-JSONL-line-per-call audit logging to stderr or a file via
FIELDROUTES_MCP_AUDIT_LOG.
Development
git clone https://github.com/sanjibani/fieldroutes_mcp.git
cd fieldroutes_mcp
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest
ruff check src tests
mypy src testsLicense
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for QuickBooks Online providing read-only access to customers, vendors, invoices, bills, and chart of accounts. Enables natural language queries to your financial data through Claude or any MCP client.Last updated8MIT
- AlicenseAqualityCmaintenanceMCP server for Housecall Pro, providing 5 tools for AI agents to register customers, schedule jobs, create estimates, log leads, and generate invoices (env-gated).Last updated5MIT
- AlicenseAqualityBmaintenanceOne MCP server for the SaaS back office. Stripe, HubSpot, and Google Sheets exposed as typed, read-only-by-default tools for Claude and any MCP client.Last updated1MIT
- Alicense-qualityCmaintenanceA database-agnostic MCP server that enables natural language queries to your database through Claude or Copilot, automatically writing and executing SQL.Last updated2MIT
Related MCP Connectors
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sanjibani/fieldroutes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server