🤖 Claude Code MCP Setup

Connect Claude Code to your JobTread data via MCP

What You'll Need

Claude Code Native HTTP Support

Claude Code supports HTTP MCP servers directly - no additional tools like mcp-remote needed!

Step 1: Get Your Credentials

  1. Open JT Power Tools Popup
    Click the extension icon in your Chrome toolbar while on JobTread
  2. Go to the API Tab
    Click the "API" tab to find your Grant Key
  3. Go to the License Tab
    Click the "License" tab to find your License Key
  4. Copy Both Keys
    You'll need both for the configuration

Step 2: Configure Claude Code

Open your Claude Code settings file. The location depends on your OS:

Add the MCP Server Configuration

Add the following to your mcpServers object:

"jobtread": { "url": "https://mcp.jobtread-tools.pro/sse", "headers": { "Authorization": "Bearer YOUR_LICENSE_KEY:YOUR_GRANT_KEY" } }
Replace Placeholders

Make sure to replace YOUR_LICENSE_KEY and YOUR_GRANT_KEY with your actual keys!

Full Example Settings File

If you don't have a settings file yet, here's a complete example:

{ "mcpServers": { "jobtread": { "url": "https://mcp.jobtread-tools.pro/sse", "headers": { "Authorization": "Bearer YOUR_LICENSE_KEY:YOUR_GRANT_KEY" } } } }

Step 3: Restart Claude Code

  1. Save the Settings File
    Make sure your changes are saved
  2. Restart Claude Code
    Close and reopen Claude Code to load the new configuration
  3. Verify Connection
    Try asking Claude about your JobTread data

Step 4: Test the Connection

Try these example prompts to verify the connection works:

Available Tools

The MCP server provides these read-only tools:

Tool Description
search_jobs Search and list JobTread jobs
list_customers Get customer information
list_vendors Get vendor information
list_tasks Get tasks and to-dos
get_budgets Get budget details for jobs
knowledge_lookup Search knowledge base
Read-Only Access

For security, the MCP server only provides read access to your data. To make changes, use the JobTread web interface.

Troubleshooting

Connection Failed

No Data Returned

Next Steps