fieldwork-mcp
Fieldwork MCP
Ask your pest control business questions in plain English.
Works with Claude, Cursor, Codex, and other AI apps that support MCP.
“How many customers do I have?”
“Who owes me money?”
“How much Alpine did we use this week?”
“Who did the most jobs?”
Your AI asks Fieldwork. You get a clear answer.
Read-only — it can’t change jobs, charge cards, or edit customers.
Site: landing/index.html (Relay home) · landing/fieldwork.html (Ask Fieldwork) · Roadmap: ROADMAP.md
Who this is for
Pest and lawn-care owners who run Fieldwork and want answers without digging through reports.
Why can’t they just ask Claude or Cursor to set it up?
Often they can — if they’re already in Cursor or Claude Code with this project open, say:
Set up Fieldwork MCP for me. I’ll paste my API key into
.env.
The agent can create the venv, write MCP config, and wire the launcher.
You still need to get the API key yourself (it’s your Fieldwork password-equivalent).
Don’t paste the key into a random chat if you can drop it straight into .env.
When a copy-paste snippet still helps
You’re on the website and don’t have an agent in the folder yet
You’re on Claude Desktop, which doesn’t edit your disk the same way
Someone else is setting up a machine without opening this repo
The endgame (see Roadmap) is a one-line remote URL + login, like LandingFolio — no Terminal, no JSON.
What you can ask
Customers
How many customers do I have?
Do I have a customer named ___?
Money
Who owes me money?
How much did we make this month?
How is business doing?
Product
How much product was used?
What chemicals do we carry?
Schedule, routes & technicians
What’s on the schedule this week?
Who are my technicians?
How are my routes doing?
Who did the most jobs?
Bonus prompt: monday_morning_briefing — one bundled ops snapshot.
Quick start
1. Get your Fieldwork API key
Easiest path (in the Fieldwork app):
Open your user (or an API Integration user)
Open the Integration tab and copy the API Key
Help: Fieldwork APIs
2. Install
git clone https://github.com/daisydaines/fieldwork-mcp.git
cd fieldwork-mcp
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .
cp .env.example .env
# put FIELDWORK_API_KEY=... in .env3. Connect your AI app
Cursor — ~/.cursor/mcp.json:
{
"mcpServers": {
"fieldwork": {
"command": "/ABS/PATH/TO/fieldwork-mcp/scripts/run_mcp.sh"
}
}
}Claude Desktop — same JSON in~/Library/Application Support/Claude/claude_desktop_config.json
Claude Code:
claude mcp add fieldwork -- /ABS/PATH/TO/fieldwork-mcp/scripts/run_mcp.shCodex — add a stdio MCP server pointing at scripts/run_mcp.sh (same idea as Cursor).
Then restart the app and ask: How many customers do I have?
Hosted connect (no Dropbox-style OAuth)
Fieldwork does not offer a third-party OAuth login popup. Closest path:
./scripts/run_mcp_http.sh
# open http://127.0.0.1:8000/connectPaste your API key once. You get a bearer token and a one-line snippet for Claude / Cursor / Codex.
Also serves the Relay landing at /.
URL | What |
| Landing |
| Paste API key → connect token |
| Streamable HTTP MCP ( |
For a shared deploy, set FIELDWORK_VAULT_SECRET (required) and FIELDWORK_PUBLIC_BASE_URL
(e.g. https://mcp.example.com). See Dockerfile. Keep FIELDWORK_MCP_ALLOW_ENV_FALLBACK=0.
Safety
Can do | Cannot do |
Read customers, jobs, invoices, usage | Create or edit customers |
Summarize routes & techs | Cancel or reschedule jobs |
Report product used on jobs | Take payments or change prices |
Tools are annotated readOnlyHint. The HTTP client refuses non-GET requests.
For builders
pip install -e ".[dev]"
pytest
ruff check src tests
./scripts/run_mcp.sh # stdio
./scripts/run_mcp_http.sh # streamable-httpAuth to Fieldwork: api-key header (default).
Unofficial. Not affiliated with Fieldwork / Anstar Products.
License
MIT — see LICENSE.