MCP Hub
Back to servers

TradesPro

TradesPro is an open source MCP server that gives AI assistants structured knowledge of the skilled trades: electrical (NEC 2023), plumbing (UPC 2024), and HVAC (IRC Mechanical).

glama
Forks
1
Updated
Mar 17, 2026

TradesPro MCP Server

An MCP (Model Context Protocol) server that gives AI assistants access to skilled trades knowledge — building codes, material pricing, job scoping, and permit requirements for electrical, plumbing, and HVAC work.

Why This Exists

AI assistants (Claude, ChatGPT, Cursor) can't look up building codes, estimate materials, or scope trade jobs accurately. This MCP server fixes that by giving agents structured, queryable access to:

  • NEC 2023 electrical codes (GFCI, AFCI, wire sizing, panel requirements)
  • UPC 2024 plumbing codes (drain sizing, venting, water heater sizing)
  • IRC Mechanical HVAC codes (duct sizing, refrigerant lines, efficiency standards)
  • Material pricing — 40+ common trade materials with national average prices
  • Job templates — 8 standard residential jobs with labor, materials, and total pricing
  • Permit checker — Determines if a described job likely requires permits

Quick Start

Install

pip install fastmcp

Run locally (stdio)

python server.py

Run as HTTP server

fastmcp run server.py:mcp --transport http --port 8000

Test with FastMCP Inspector

fastmcp dev server.py:mcp

This opens a web UI at http://127.0.0.1:6274 where you can test all tools interactively.

Connect to AI Clients

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "trades-pro": {
      "command": "python",
      "args": ["/path/to/server.py"]
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "trades-pro": {
      "command": "python",
      "args": ["/path/to/server.py"]
    }
  }
}

Remote (HTTP)

{
  "mcpServers": {
    "trades-pro": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

Available Tools

ToolDescription
lookup_building_codeLook up specific code requirements (trade + topic)
list_code_topicsList all available code topics for a trade
estimate_materialsGet itemized material list and costs for a job
scope_jobFull job scope: labor, materials, price range, permits
list_available_jobsBrowse job templates, optionally filtered by trade
lookup_material_priceSearch material pricing by keyword
check_permit_requirementsCheck if a job description likely requires permits

Example Queries

Once connected, ask your AI assistant:

  • "What are the GFCI requirements for a kitchen remodel?"
  • "Scope out a 200A panel upgrade — labor, materials, and total cost"
  • "Do I need a permit to install an EV charger?"
  • "What size wire do I need for a 50A circuit?"
  • "Estimate materials for a bathroom rough-in"

Authentication & Pricing

TradesPro uses API key-based authentication with two tiers:

Free Tier (default)

  • Access to all 7 tools — try everything before buying
  • 10 calls per hour rate limit
  • Use demo key trades_demo_2026 or connect without any key
  • Responses include a small footer with upgrade link

Pro Tier

  • Unlimited access to all tools
  • No rate limiting
  • No footer messages
  • Get your API key at bluecollar.run/pro

Configuring Your API Key

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "trades-pro": {
      "url": "https://your-server-url.com/mcp",
      "headers": {
        "X-API-Key": "pk_your_api_key_here"
      }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "trades-pro": {
      "url": "https://your-server-url.com/mcp",
      "headers": {
        "X-API-Key": "pk_your_api_key_here"
      }
    }
  }
}

Free Tier (no key needed)

{
  "mcpServers": {
    "trades-pro": {
      "url": "https://your-server-url.com/mcp"
    }
  }
}

Environment Variables

VariableDescriptionDefault
API_KEYSJSON string mapping API keys to tiers, e.g. {"pk_abc123": "pro"}"" (free tier only)
PORTHTTP server port8000

Additional Monetization Options

xpay (Pay-per-call, zero code changes)

  1. Deploy the server as an HTTP endpoint
  2. Register at xpay.sh
  3. Set per-tool pricing ($0.01–$0.25 per call)
  4. Share the proxy URL instead of your direct server URL

B2B Retainer

Bundle this server with a custom AI agent for trade businesses:

  • Charge $500–$2,000/month per client
  • Customize data for their local market (local pricing, local codes)
  • Add features: scheduling integration, invoice generation, CRM

Publishing to Smithery

npm install -g @smithery/cli
smithery mcp publish https://your-server-url.com/mcp -n your-org/trades-pro

Extending the Server

Add local pricing

Replace the MATERIAL_PRICES dict with data from local suppliers. The structure is simple:

"Item name": {"price": 0.00, "unit": "each", "category": "electrical"}

Add local code amendments

Many jurisdictions amend national codes. Add a local_amendments dict and modify lookup_building_code to layer local rules on top.

Add more job templates

Follow the JOB_TEMPLATES structure to add new jobs. Each template needs: name, trade, description, labor hours, materials list, permit info, and notes.

Hosting Options

OptionCostBest For
Local (your machine)FreeDevelopment, personal use
Railway.app~$5/monthCheap always-on hosting
Fly.io~$5/monthEdge deployment
Prefect HorizonFree tierFastMCP native hosting
Docker on VPS~$5-10/monthFull control

License

MIT

Reviews

No reviews yet

Sign in to write a review