The Spectora MCP Server lets you connect AI assistants — like Claude, ChatGPT, Cursor, and GitHub Copilot — directly to your Spectora account. The Model Context Protocol (MCP) is an open standard that gives AI tools secure, structured access to your inspection business data.
Once connected, you can use natural language to work with your data. For example:
- "Which agents referred the most inspections this quarter, and what's their contact info?"
- "Compare my top 5 agents by inspection volume over the last 6 months"
- "Find all inspections in Austin, TX from the past 30 days that are still pending"
- "Show me all clients with inspections scheduled this week"
Before You Begin
To set up the MCP Server, you will need:
- A Spectora account with company admin permission.
- An API key — you can create one here.
- An AI tool that supports MCP — see below for setup guides covering popular tools.
Keep your API key secure — do not expose it in client-side code or public repositories. If you believe your key has been compromised, roll it immediately from the API Keys page.
MCP Connection Details
Use the following details to configure your AI tool:
Server URL: https://connect.spectora.com/mcp
Transport: Streamable HTTP
Authentication is supported via two methods:
| Method | Format |
|---|---|
| Authorization header | Authorization: Bearer YOUR_API_KEY |
| Query parameter | apiKey=YOUR_API_KEY |
Most tools use the header method. The query parameter method is available for tools that do not support custom headers (e.g., ChatGPT).
Setup Instructions
Some setups below use npx, which requires Node.js to be installed on your machine.
To verify everything is set up correctly, open your terminal and run node --version and npx --version — both should return a version number.
Claude Desktop
- Go to Settings -> Developer -> Edit Config
- Open the
claude_desktop_config.jsonfile and paste the following configuration:
macOS / Linux:
Code
Windows:
Code
- Save the file and restart Claude Desktop
- Verify that
spectoraappears as a connected MCP server
ChatGPT
ChatGPT's free plan does not include developer mode, which is required for this setup.
- Go to Settings -> Apps -> Advanced settings and enable Developer mode
- Click Create app and configure:
- Name: Spectora
- MCP Server URL:
https://connect.spectora.com/mcp?apiKey=YOUR_API_KEY - Authentication: No Auth
- Enable the confirmation checkbox and click Create
Claude Code
Run the following command in your terminal:
Code
Use the /mcp command inside Claude Code to verify the connection.
Cursor
- Go to Cursor Settings -> Tools & MCP -> New MCP Server
- Paste the following configuration:
macOS / Linux:
Code
Windows:
Code
- Save the file and verify that
spectoraappears as a connected MCP server in the Installed MCP Servers panel.
Other
MCP is an open protocol supported by many clients. Refer to your client's documentation for specific connection steps, using the MCP Connection Details above.
Most clients accept a configuration similar to this:
Code
Available Tools
The MCP Server exposes the following tools:
| Resource | Tool | Description | API |
|---|---|---|---|
| Agents | list-connections-v2 | Browse and filter your agents | List Agents |
| Agents | get-connection-v2 | Get details of a specific agent | Get Agent |
| Agent Stats | list-connection-stats-v2 | Browse agents enriched with inspection statistics | List Agent Stats |
| Clients | list-contacts-v2 | Browse and filter your clients | List Clients |
| Clients | get-contact-v2 | Get details of a specific client | Get Client |
| Inspection Attachments | list-inspection-attachments-v2 | Browse and filter inspection attachments | List Inspection Attachments |
| Inspections | list-inspections-v2 | Browse and filter your inspections | List Inspections |
| Inspections | show-inspection-v2 | Get details of a specific inspection | Get Inspection |
Troubleshooting
npxcommand not found — Install Node.js, which includesnpx- Authentication errors — Verify your API key is valid and has not expired. You can manage your keys here.
- Tools not appearing — Restart your AI tool after making configuration changes

