TradesMCP: Open Source MCP Server for Contractor License Verification and Construction Data

What TradesMCP Does
TradesMCP is a Model Context Protocol server built with Claude Code that gives Claude access to real contractor license data, building permits, material pricing, and labor rates. In testing, it correctly verified an active California contractor license (1098765) while ChatGPT incorrectly stated the license "does NOT exist in the CSLB system" and was "not active (and likely invalid)."
Test Results Comparison
- Claude Code without MCP: Couldn't submit the CSLB form, told user to look it up manually at cslb.ca.gov
- ChatGPT: Said license "does NOT exist in the CSLB system" and was "not active (and likely invalid)" - incorrect for a real, active license
- Claude Code + TradesMCP: One tool call returned instant result: Carlos J Martinez, Martinez & Sons General Contracting Inc, B - General Building Contractor, Active, expires 2027, $25K bond, workers comp on file
Features and Coverage
TradesMCP includes 13 tools covering:
- Contractor license verification across CA, TX, FL, NY (real government databases, not training data)
- Building permit search with inspection history
- Material pricing for 20+ items
- BLS labor rates for 12 trades across 12 metro areas
- Project cost estimation with regional adjustments
- Compliance tracking — insurance, bonds, renewal deadlines
All 4 states hit real data sources live: California CSLB scraping, Texas Socrata API (958K+ records), Florida DBPR, NYC Open Data + DOB BIS.
Installation and Setup
Install via pip:
pip install git+https://github.com/Mahender22/trades-mcp.gitFor Claude Code:
claude mcp add trades-mcp -e TRADES_MCP_DEMO=true -- trades-mcpFor Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"trades-mcp": {
"command": "/path/to/trades-mcp-env/bin/trades-mcp",
"env": {
"TRADES_MCP_DEMO": "true"
}
}
}
}Project Details
Free, open source, MIT licensed. 68 tests. Built entirely with Claude Code. Available on GitHub: https://github.com/Mahender22/trades-mcp
📖 Read the full source: r/ClaudeAI
👀 See Also

Atlarix v5.1 adds cloud tiers while maintaining local AI coding support
Atlarix v5.1.0 introduces Compass cloud tiers for immediate use while maintaining full Ollama and LM Studio support. The IDE uses a persistent SQLite graph called Blueprint to provide precise context to local models.
Hugging Face's physics-intern: Multi-Agent Framework Doubles Gemini on CritPt Benchmark
Hugging Face released physics-intern, a multi-agent framework for theoretical physics research that doubles Gemini models' performance on the CritPt benchmark and sets a new SOTA vs GPT-5.5 Pro at lower cost.

Why Deterministic Workflows Outperform AI-Driven Orchestration for Agent Systems
A developer with a year of experience building agent systems shares that AI-driven orchestration failed reliably due to non-deterministic routing, compounding errors, cost explosion, and impossible debugging. Switching to deterministic workflows with code-based orchestration eliminated orchestration failures.

Squeez tool compresses bash output 90%+ to extend Claude Code context window
Squeez is a hook that automatically compresses raw bash output like ps aux, docker logs, and git log before it reaches Claude Code. It reduces token usage by 92.8% on average across 19 common commands, helping sessions last longer.