Skip to main content
Orbyt
Products
Products
Orbyt Jobs
The job search CRM. Free forever.
Orbyt Intelligence
AI compensation data, and the API behind it.
Orbyt One
One account. Every Orbyt product.
Research lab
Orbyt CollectiveAn agent leadership team, an audit harness, and governance layer
The lab
Orbyt Labs
The skunkworks: the agent org, iOS, Apple Watch, Vision Pro
By your situation
Job Search Tracks
15 tracks for your exact moment
For Recruiters
Hiring and comp benchmarking
Start without a card
Playground
Run a live query
MCP server
Three steps into Claude Code
API docs
Endpoints, auth, and limits
What one account means
One login for Jobs and Intelligence.
One bill, one payment method.
One profile that follows you.
Developers
Build
Developer Hub
Start here
Orbyt API
The platform API
Jobs API Docs
23 endpoints, MCP native
Intelligence API
20 endpoints, Decision-Ready
Try
MCP Server
Wired into Claude Code in three steps
Playground
Engine response shapes with cURL
Try It Live
One call, one real response
Webhooks
Events and delivery
Reference
Reference
The full index
Glossary
Every term, defined
Methodology
How the numbers are made
Status
Live service health
Resources
Learn
Interview Prep
Company-by-company question sets
AI Skills Lab
The skills that pay in 2026
Guides
Long-form career playbooks
Blog
What we are building, in the open
Tools and data
Free Tools
Calculators and generators, no signup
Salary Explorer
3,445 roles across 81 cities
Job Board
Curated AI-era roles
Compensation Reports
Free summary PDF
Data Catalog
Every role, city, and engine
Companies
54 leveling frameworks
International
The US, UK, and Canada
Help
Support
Help center and contact
Compare
Orbyt against the alternatives
Books
Start reading
The books
The story in order
Read the opening
Free, no email required
The series
Book 1: Cold Start
Available now
Book 2: Unfair Advantage
Writing
Book 3: Human Heartbeat
Coming
Book 4: Without Me
Future
Book 5: Observer Effect
Future
Receipts
Building in Public
The numbers behind the books
Pricing
Company
Who we are
About
A family of AI products, and why they exist
Leadership
One human decides. AI agents advise.
Values
The principles behind every build decision
Creed
Here is to the relentless ones. The company creed
The story
Labs
The Skunkworks. iOS, Apple Watch, Vision Pro.
Press
Media kit, logos, and inquiries
Contact
Email the team
Log inStart
Pricing
Products
Orbyt JobsOrbyt IntelligenceOrbyt One
Research lab
Orbyt Collective
The lab
Orbyt Labs
Developers
Build
Developer HubOrbyt APIJobs API DocsIntelligence API
Try
MCP ServerPlaygroundTry It LiveWebhooks
Reference
ReferenceGlossaryMethodologyStatus
Resources
Learn
Interview PrepAI Skills LabGuidesBlog
Tools and data
Free ToolsSalary ExplorerJob BoardCompensation ReportsData CatalogCompaniesInternational
Help
SupportCompare
Calculators and tools
Salary CalculatorTake-Home CalculatorTotal Comp CalculatorCompare OffersSkills ImpactSalary Projections 2030Resume ScoreCover Letter GeneratorSalary WidgetUnemployment CalculatorAI Skills Assessment
Books
Start reading
The booksRead the opening
The series
Book 1: Cold StartBook 2: Unfair AdvantageBook 3: Human HeartbeatBook 4: Without MeBook 5: Observer Effect
Receipts
Building in Public
Company
Who we are
AboutLeadershipValuesCreed
The story
LabsPressContact
StartAlready have an account? Log in
  1. Home/
  2. Developers/
  3. Claude Desktop
Developers
MCP6 min readUpdated Jun 12, 2026

Claude Desktop Integration Guide

Connect Claude Desktop to Orbyt Intelligence over MCP. The working config, the Pro plan requirement, what the Jobs pipeline can and cannot do, and the honest history of the handshake bug we fixed. Verified June 2026.

The status

Claude Desktop connects to Orbyt Intelligence today. The config below is the working form. Earlier on June 9, 2026 this page said the opposite, because our MCP server answered the handshake with a protocol version no official client accepts. We fixed that the same day. The history is below, because we promised to keep this page honest.

One requirement up front: the hosted MCP server needs an Intelligence key on the Pro plan or higher. Free-tier keys get a 403 with an upgrade pointer. There is no trial, so a Pro subscription bills from the day you start it.

Two Orbyt surfaces, two different protocols

Orbyt has two products with two different machine interfaces. They are not interchangeable.

SurfaceWhat it holdsProtocolAuth
Orbyt Jobs APIYour pipeline: jobs, contacts, activities, calendarREST over HTTPSBearer ext_ token
Orbyt Intelligence MCPSalary and labor market dataMCP (JSON-RPC 2.0 over POST)Bearer intelligence_ key

The /api/mcp/ prefix on the Jobs API is naming, not protocol. Those 23 endpoints speak plain REST. There is no MCP server for your Jobs pipeline today, so Claude Desktop cannot reach your pipeline. If you want an AI assistant on your pipeline right now, use the ChatGPT GPT Actions guide, Apple Shortcuts, or Zapier. Those work.

The Intelligence MCP endpoint at https://www.orbytjobs.ai/api/v1/intelligence/mcp is a real MCP server, and Claude Desktop can now finish the handshake with it.

What was broken, and what we changed

Claude Desktop, and the mcp-remote bridge it uses for a remote server, are built on the official MCP SDK. During initialize, the SDK checks the protocol version the server returns. Our server used to return 2026-05-10, an internal lock date that is not a real MCP spec revision. The SDK accepts only official revisions, so the connection died with:

Server's protocol version is not supported: 2026-05-10

We reproduced that on June 9, 2026 by running the latest mcp-remote against our own server, then shipped the fix the same day. The server now negotiates protocol versions the way the MCP spec describes: if your client requests 2025-11-25, 2025-06-18, 2025-03-26, or 2024-11-05, the server echoes it back. Anything else gets our newest supported version, 2025-11-25. Official clients complete the handshake.

The config

This is the working claude_desktop_config.json shape for connecting Claude Desktop to the Intelligence MCP endpoint through the mcp-remote bridge.

The file lives at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "orbyt-intelligence": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://www.orbytjobs.ai/api/v1/intelligence/mcp",
        "--transport",
        "http-only",
        "--header",
        "Authorization:${AUTH_HEADER}"
      ],
      "env": {
        "AUTH_HEADER": "Bearer intelligence_your_key_here"
      }
    }
  }
}

Two details worth knowing:

  • The header value goes through the env block because some clients split command arguments on spaces. Authorization:${AUTH_HEADER} has no space, so it survives intact.
  • mcp-remote needs Node 18 or newer on your machine.

Intelligence API keys are generated from the Intelligence dashboard. The MCP server requires Pro or higher; see pricing for plans. There is no trial, and the free tier does not include MCP.

Restart Claude Desktop after saving the config. You are connected when you ask "What does a Senior AI Engineer in San Francisco make?" and Claude answers with a number and a citation.

You can also talk to the endpoint directly

The Intelligence MCP server answers raw JSON-RPC too. If you are building your own agent, or you just want to see real data without a client in the middle, this works:

curl -X POST https://www.orbytjobs.ai/api/v1/intelligence/mcp \
  -H "Authorization: Bearer intelligence_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "analyze_compensation",
      "arguments": { "role": "ai-engineer", "city": "san-francisco" }
    }
  }'

You get back a decision-ready answer with a citation and a request id. Six tools are available: list_capabilities, analyze_compensation, analyze_skills, analyze_market, discover_roles_and_cities, and find_adjacent_opportunities. Full details on the MCP page.

Your pipeline, other assistants

The Intelligence MCP connection covers salary and labor market data. Your Jobs pipeline is a separate surface, and it is reachable by machine through these routes:

  • ChatGPT GPT Actions: imports our trimmed OpenAPI spec and gets all 23 pipeline operations. Verified working.
  • Apple Shortcuts: Siri briefings and quick-add via plain REST calls.
  • Zapier / Make / n8n: real-time webhooks on pipeline events.
  • Anything that speaks HTTP: the full REST surface is documented at /openapi.yaml with Bearer ext_ token auth.

A native MCP server for the Jobs pipeline is on the roadmap. When it ships, this page gets the config the same day.

Claude Desktop config (Intelligence MCP via mcp-remote; Pro plan key required)Download
{
  "mcpServers": {
    "orbyt-intelligence": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://www.orbytjobs.ai/api/v1/intelligence/mcp",
        "--transport",
        "http-only",
        "--header",
        "Authorization:${AUTH_HEADER}"
      ],
      "env": {
        "AUTH_HEADER": "Bearer intelligence_your_key_here"
      }
    }
  }
}

Other integration guides

ChatGPT GPT ActionsOpenAPI

Import the Orbyt GPT Actions spec to build a Custom GPT. Your GPT can read your pipeline, log activities, and help you prepare for interviews using your real data.

Apple ShortcutsREST

Use the "Get Contents of URL" action with Bearer auth. Build morning briefings, quick-add workflows, and Siri commands that talk to your pipeline.

Zapier / Make.com / n8nWebhooks

Register webhooks via the API and trigger Zaps or scenarios. Get Slack alerts on offers, auto-log interview notes, or sync new jobs to Notion.

OpenClawMCP

Connect Orbyt to OpenClaw for AI-powered job search assistance. OpenClaw reads Orbyt's REST tool manifest, so setup takes under a minute.

Ready to build?

Ship it.

Begin.

On this page

The statusTwo Orbyt surfaces, two different protocolsWhat was broken, and what we changedThe configYou can also talk to the endpoint directlyYour pipeline, other assistants

Resources

Endpoint ReferenceOpenAPI SpecMCP Manifest

Developers

  • Explore Developers
  • Orbyt API
  • Intelligence API
  • Claude Desktop
  • ChatGPT
  • Zapier
  • Glossary

Get started

  • Sign Up
  • Sign In

More from Orbyt

  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One
  • Free Tools

Product

  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One

Research Lab

  • Orbyt Collective

Developers

  • Orbyt API & MCP
  • Intelligence API & MCP
  • Claude Desktop
  • ChatGPT

Job Search

  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI

Guides

  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports

Free Tools

  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • AI Skills Assessment
  • Compare Offers

Reference

  • Job Search Glossary
  • Intelligence Glossary
  • Methodology

Salary Data

  • AI Salary Hubs
  • Salary Calculator
  • Take-Home Calculator
  • Total Comp Calculator

Compare

  • Orbyt vs Teal
  • Orbyt vs Huntr
  • Orbyt vs LinkedIn
  • Orbyt vs Levels.fyi
  • Orbyt vs Glassdoor

Account

  • Sign In
  • Sign Up

Company

  • About
  • Leadership
  • The Books
  • Support

Fun Stuff

  • Arcade Games
Product
  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One
Research Lab
  • Orbyt Collective
Developers
  • Orbyt API & MCP
  • Intelligence API & MCP
  • Claude Desktop
  • ChatGPT
  • All developer docs →
Job Search
  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI
  • All job types →
Guides
  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports
  • All guides →
Free Tools
  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • AI Skills Assessment
  • Compare Offers
  • All free tools →
Reference
  • Job Search Glossary
  • Intelligence Glossary
  • Methodology
  • All references →
Salary Data
  • AI Salary Hubs
  • Salary Calculator
  • Take-Home Calculator
  • Total Comp Calculator
  • All salary data →
Compare
  • Orbyt vs Teal
  • Orbyt vs Huntr
  • Orbyt vs LinkedIn
  • Orbyt vs Levels.fyi
  • Orbyt vs Glassdoor
  • All comparisons →
Company
  • About
  • Leadership
  • The Books
  • Support
Fun Stuff
  • Arcade Games
Sign InSign Up
Orbyt™

© 2026 Purecraft LLC  All rights reserved.

Privacy·Terms·Security·Trademark·Accessibility·DPA·Refund·Status·Sitemap

Orbyt, the Orbyt logo, and the Orbyt product names (Orbyt Jobs, Orbyt Intelligence, Orbyt Collective, Orbyt One, Orbyt Books, Orbyt Labs, Orbyt Arcade) are trademarks of Purecraft LLC. Product names, logos, and brands of others are the property of their respective owners. Orbyt is not affiliated with, sponsored by, or endorsed by any third party referenced on this site.