Copy-paste MCP configuration for Claude Code, Codex, Cursor, VS Code, Windsurf, and more.
Every example below needs two things:
https://mcp.inrconnect.com/housecall-pro/mcphttps://mcp.inrconnect.com/jobber/mcpThe examples use the Housecall Pro endpoint - swap in the Jobber endpoint if
that is the integration your key belongs to. Replace
mcp_live_your_key_here with your actual API key everywhere it appears.
Add the server with one CLI command:
claude mcp add --transport http housecall-pro \
https://mcp.inrconnect.com/housecall-pro/mcp \
--header "x-api-key: mcp_live_your_key_here"Or configure it in JSON - project-scoped in .mcp.json at your repo root, or
user-scoped via claude mcp add --scope user:
{
"mcpServers": {
"housecall-pro": {
"type": "http",
"url": "https://mcp.inrconnect.com/housecall-pro/mcp",
"headers": {
"x-api-key": "mcp_live_your_key_here"
}
}
}
}Run /mcp inside Claude Code to confirm the server is connected.
Codex configuration lives in TOML at ~/.codex/config.toml (or
project-scoped in .codex/config.toml):
[mcp_servers.housecall-pro]
url = "https://mcp.inrconnect.com/housecall-pro/mcp"
http_headers = { "x-api-key" = "mcp_live_your_key_here" }Codex picks the transport from the keys you set - url means streamable
HTTP. Run /mcp inside a Codex session to verify the connection.
Add the server to .cursor/mcp.json in your project, or
~/.cursor/mcp.json to make it available everywhere:
{
"mcpServers": {
"housecall-pro": {
"url": "https://mcp.inrconnect.com/housecall-pro/mcp",
"headers": {
"x-api-key": "mcp_live_your_key_here"
}
}
}
}To keep the key out of the config file, Cursor supports environment variable
references: "x-api-key": "${env:INRCONNECT_MCP_KEY}".
Add the server to .vscode/mcp.json in your workspace:
{
"servers": {
"housecall-pro": {
"type": "http",
"url": "https://mcp.inrconnect.com/housecall-pro/mcp",
"headers": {
"x-api-key": "mcp_live_your_key_here"
}
}
}
}Note that VS Code uses a top-level servers key rather than mcpServers.
Add the server to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"housecall-pro": {
"serverUrl": "https://mcp.inrconnect.com/housecall-pro/mcp",
"headers": {
"x-api-key": "mcp_live_your_key_here"
}
}
}
}Windsurf also supports ${env:VAR_NAME} interpolation in headers if you
prefer to keep the key in an environment variable.
Inrconnect works with any MCP client that supports the streamable HTTP transport and custom request headers. Configure it with:
x-api-key: mcp_live_your_key_hereIf your client only supports OAuth or cannot send custom headers, use the ChatGPT or Claude style OAuth flow instead, or email us and we will help you get connected.
After adding the server, ask the client something narrow, like:
Search Housecall Pro for a customer named Smith.If the client lists the Inrconnect tools and returns results, you are connected. Tool calls respect the key's access mode and any per-tool restrictions you configured.
Email support@inrconnect.com and we will be happy to assist.