open-jobsite
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., "@open-jobsiteSet up a local project for the Maple St remodel and draft a daily log from my field notes."
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.
Open Jobsite
Open Jobsite is an open, local-first construction operations server for goose and other Model Context Protocol (MCP) clients. It turns field evidence into reviewable calculations, daily logs, estimates, and change orders while keeping source references, unit math, assumptions, exclusions, and human approval boundaries visible.
This repository is a working v0.1 grant-proof MVP. It uses synthetic data, makes no network calls, and never sends a message, submits a price, places an order, or approves an artifact.
Why it exists
Field work starts with rough notes, photos, sketches, measurements, receipts, and conversations—not clean database rows. General-purpose agents can draft polished answers while hiding where numbers came from. Open Jobsite takes the opposite approach:
Evidence first: records retain a user-supplied source reference and privacy status.
Deterministic math: quantity tools use decimal arithmetic and expose formulas and intermediate values.
Draft by default: every estimate and change order is explicitly unapproved.
Local and portable: JSON files stay in a user-controlled folder and the tool surface is standard MCP.
Field-shaped workflows: portable skills cover daily logs, scoped estimates, and change orders.
Related MCP server: Keystone MCP Server
Working flow
Create a local project.
Record a note or measurement with a source reference.
Run a deterministic quantity calculation.
Draft an artifact linked to the evidence ID.
Review and edit the draft outside the server before any external action.
Tools
Tool | Purpose | External side effect |
| Create a local JSON job record | Local file only |
| Record a sourced note, measurement, or media reference | Local file only |
| Read the complete local record | None |
| Area plus stated waste factor | None |
| Rectangular volume in cubic yards | None |
| Whole sheets plus stated waste | None |
| Whole stock pieces plus stated waste | None |
| Draft labor summary linked to evidence | Local file only |
| Draft priced scope with unit math | Local file only |
| Draft scope/cost/schedule change | Local file only |
Financial and job artifacts always return:
{
"status": "draft",
"requires_human_approval": true,
"external_action_performed": false
}Install and test
Requirements: Python 3.12+ and uv.
uv sync --extra dev
uv run pytest
uv run open-jobsite --versionRun the MCP server over stdio:
uv run open-jobsiteSynthetic demo
The demo/ folder contains a synthetic end-to-end workflow, a prompt,
fixed expected results, a Windows goose CLI launcher, and a preflight that
launches the real STDIO server. Run the preflight with:
uv run python demo/run_demo.pyThe preflight is also part of GitHub Actions. It verifies the same evidence, calculation, estimate, daily log, and approval-gate flow intended for a future screen recording. A recording is not included in v0.1.
Data defaults to .open-jobsite-data/. Select another local folder with either
--data-dir PATH or the OPEN_JOBSITE_DATA_DIR environment variable.
Connect to goose Desktop
Build and test the repository first. Then add a custom STDIO extension in goose Desktop with:
Command: the absolute path to
uv(where uvon Windows)Arguments:
run --directory C:\absolute\path\to\open-jobsite open-jobsiteEnvironment: optionally set
OPEN_JOBSITE_DATA_DIRto a private job-data folder
Use only synthetic data in a public demo. The synthetic prompt has been run
through goose CLI 1.46.0 on Windows; see the
verification record. A Berd-local MCP
run has not yet been verified.
Verified v0.1 evidence
As of 2026-08-27:
28 automated tests pass on Windows.
all five synthetic benchmark cases pass, including four exact numeric cases and three approval invariants.
the real STDIO preflight produces 108 square feet, four sheets, a CAD 344.00 subtotal, a CAD 378.40 total, and 6.00 labor hours.
an isolated Windows goose CLI run produced two evidence records and two draft artifacts with the same expected values.
These are narrow software checks, not claims about field accuracy, estimating accuracy, code compliance, or user outcomes.
Example MCP arguments
Complex inputs use typed arrays so goose can see the required fields in the MCP
schema. For draft_estimate, a minimal line_items value is:
[
{
"description": "Synthetic wallboard",
"quantity": 3,
"unit": "sheet",
"unit_cost": 18.5,
"evidence_ids": ["ev-example"]
}
]The evidence ID must already exist in the same project.
Repository map
src/open_jobsite/: deterministic core, local store, artifacts, MCP toolsskills/: portable field-workflow instructions for goosebenchmark/: synthetic, machine-readable evaluation casesdemo/: reproducible preflight, Windows goose launcher, and recording planexamples/: a synthetic example project recordtests/: core and in-process MCP protocol testsdocs/architecture.md: component and trust-boundary designdocs/threat-model.md: current risks and mitigations
Safety and limitations
This alpha is not estimating, legal, contract, tax, structural, code, or safety advice. It does not inspect site conditions, validate plans, optimize cuts, confirm prices, or replace a qualified professional. A correct calculation can still be based on a wrong measurement or assumption. Review all output against current drawings, contracts, codes, manufacturer instructions, and field conditions.
Do not put tenant names, addresses, credentials, private photos, client records,
or proprietary price data into public examples or bug reports. See
SECURITY.md and docs/threat-model.md.
Roadmap
Q1: stable schema, 25 benchmark cases, CI, Windows goose/Berd demo, upstream goose contribution
Q2: voice/photo/PDF adapters, bilingual workflows, provenance review MCP App, three safely documented pilots
Q3: revision history, change detection, local price-book adapters, security hardening, three external pilots
Q4: v1.0, 50+ benchmark tasks, usability study with five field users, maintainer documentation
See CONTRIBUTING.md to participate. Apache-2.0 licensed.
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
- AlicenseNot gradedqualityBmaintenanceEnables multi-project workspaces to share structured notes, API contracts, and handoff messages via a local SQLite database, with versioning and read tracking.GPL 3.0
- AlicenseNot gradedqualityBmaintenanceEnables construction professionals to query project documents with conflict-aware RAG, detect contradictions, and trace change impacts through any MCP client.430MIT
- AlicenseBqualityAmaintenanceLocal-first MCP server that transforms civil case PDFs into queryable cases with structural provenance, evidence IDs, and page-level verification for drafting and factual review.22Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to perform construction takeoff and estimating from drawing PDFs, including upload, scale calibration, trade-based takeoff, pricing, and proposal export.MIT
Related MCP Connectors
Construction takeoff and estimating for AI agents. Measure a drawing PDF, export a priced estimate.
Auditable construction takeoffs with locked waste and conservative purchase rounding.
Independent pre-transaction audit for construction estimates. Free, and every verdict recomputes.
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/raoulstongea/open-jobsite'
If you have feedback or need assistance with the MCP directory API, please join our Discord server