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

Modo: Open-Source AI IDE with Spec-Driven Development and Agent Hooks
Modo is an open-source desktop IDE built on Void editor that adds spec-driven development workflows, agent hooks, and steering files. It structures prompts into requirements, design, and tasks before generating code.

Built AI Forensic Accounting Software with My Dad — CaseTrail Automates Financial Fraud Detection
A father-son team built CaseTrail, an AI-powered forensic accounting tool that ingests bank statements and identifies anomalies. The blog details integration with LLMs for transaction analysis.

Claude Code user creates /discuss command for read-only conversations
A Claude Code user created a 25-line custom skill called /discuss that enables read-only conversations without file modifications. The command allows code exploration, research, and discussion while preventing edits, using the --dangerously-skip-permissions flag with built-in safety.

Claude IDE Bridge: MCP Tool for Remote Editor Access
Claude IDE Bridge is an open-source tool that provides Claude AI with remote control access to code editors via MCP (Model Context Protocol). It exposes editor knowledge like live type information and debugger state as callable tools.