Skip to main content
Orbyt
Jobs
Overview
Everything Orbyt Jobs does
Features
Orbyt Jobs product home
Compare
Orbyt vs. the competition
Pricing
Plans and pricing
API Docs
22 endpoints, MCP native
Job Search
15 tracks tailored to your exact moment
Job Salaries
3,500+ roles across 81 cities
Guides
Long-form career playbooks for every search
Intelligence
Overview
The authority on AI compensation
Features
Orbyt Intelligence product home
Compare
Orbyt Intelligence vs. the field
Pricing
Plans and pricing
API Docs
18 endpoints, free tier
Data Catalog
What the API returns
Companies
54 company leveling frameworks
Compensation Reports
Free Summary + Enterprise Annual
Free ToolsDeveloperBlogSupport
Log inBegin
Blog
Products
Orbyt One
Job Search
Job Search HubCareer ChangersNew GraduatesRecently Laid OffExecutivesRemote Job SeekersBurned OutAfter the CutsSeasonedVeteransReturning ParentsVisa HoldersTeachersReplaced by AIHealthcare WorkersSales Professionals
Orbyt Jobs
Overview
OverviewEverything Orbyt Jobs doesFeaturesOrbyt Jobs product homeCompareOrbyt vs. the competitionPricingPlans and pricing
Explore
API Docs22 endpoints, MCP nativeJob Search15 tracks tailored to your exact momentJob Salaries3,500+ roles across 81 citiesGuidesLong-form career playbooks for every search
Orbyt Intelligence
Overview
OverviewThe authority on AI compensationFeaturesOrbyt Intelligence product homeCompareOrbyt Intelligence vs. the fieldPricingPlans and pricing
Explore
API Docs18 endpoints, free tierData CatalogWhat the API returnsCompanies54 company leveling frameworksCompensation ReportsFree Summary + Enterprise Annual
Free Tools
Free Tools HubThe full Free Tools hubJob SearchOrbyt for your exact momentCompensation ReportsFree Summary PDF, no signupInterview PrepAI-powered interview coachingResume ScoreGrade your resume against any roleCover Letter GeneratorTailored AI letter, free PDFSalary Explorer3,500+ roles across 81 citiesSalary CalculatorBase, bonus, equity in minutesTake-Home CalculatorAfter federal and state taxTotal Comp CalculatorFull compensation mathSkills ImpactWhat each skill adds to compCompare OffersSide-by-side offer mathSalary Projections 20305-year comp forecastsSalary WidgetEmbed salary data anywhereUnemployment CalculatorState-by-state benefits mathAI Skills AssessmentRate your AI-era readinessAI Skills LabThe skills that pay in 2026AI & Tech Job BoardCurated AI-era rolesCareer GuidesLong-form career strategy
Compare
Compare Jobs
Orbyt vs TealOrbyt vs HuntrOrbyt vs JobscanOrbyt vs LinkedInOrbyt vs TrelloOrbyt vs NotionOrbyt vs SpreadsheetsOrbyt vs SimplifyOrbyt vs CareerflowOrbyt vs ApplyArcOrbyt vs JobrightOrbyt vs Sprout
Compare Intelligence
Orbyt vs LevelsOrbyt vs PayscaleOrbyt vs ComprehensiveOrbyt vs GlassdoorOrbyt vs Pave
Developer
Developer HubOrbyt APIIntelligence API
Company
AboutWhat Orbyt is, and why it existsValuesThe principles that shape every build decisionCreedWhat we believe about the future of workFounderJustin BartakLabsS4 skunkworks projectsPressMedia kit, logos, and press inquiriesContactEmail the teamBlogEngineering, design, and the build journalSupportHelp center and contact
BeginAlready have an account? Log in
  1. Home/
  2. Developers/
  3. Claude Desktop
MCP5 min readUpdated Mar 29, 2026

Claude Desktop Integration Guide

Configure MCP in claude_desktop_config.json. Point it at the Orbyt MCP manifest and your API key. Claude can then search your pipeline, add jobs, and suggest next actions.

Overview

Claude Desktop supports the Model Context Protocol (MCP), which lets Claude access external tools and data sources directly. By connecting Orbyt, Claude can read your job pipeline, add new jobs, log activities, and surface intelligent suggestions, all within the conversation.

Prerequisites

  • Orbyt Ultra plan (MCP API access is Ultra+ only)
  • Claude Desktop installed on macOS or Windows
  • An Orbyt API key (generate one in Settings > Account > API Keys)

Step 1: Generate an API Key

  1. Open Orbyt and go to Settings > Account
  2. Scroll to API Keys
  3. Click Create API Key
  4. Name it "Claude Desktop" and select Read & Write permissions
  5. Copy the token (starts with ext_). You will not see it again.

Step 2: Configure Claude Desktop

Open Claude Desktop's MCP configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the Orbyt MCP server to the mcpServers section:

{
  "mcpServers": {
    "orbyt": {
      "url": "https://www.orbytjobs.ai/mcp.json",
      "headers": {
        "Authorization": "Bearer ext_your_token_here"
      }
    }
  }
}

Replace ext_your_token_here with your actual API key.

Step 3: Restart Claude Desktop

Close and reopen Claude Desktop. You should see Orbyt appear in the MCP tools panel (the hammer icon in the bottom left).

Step 4: Try It Out

Here are some things you can ask Claude:

  • "Show me my job pipeline" — Claude will call GET /api/mcp/pipeline and display your jobs by status
  • "Add this job to my pipeline: Senior Engineer at Stripe" — Claude will create a new job entry
  • "What should I follow up on?" — Claude will check GET /api/mcp/suggestions for action items
  • "Update the Stripe job to interviewing" — Claude will advance the job status
  • "Who are my contacts at Linear?" — Claude will search your contacts by company

Available Tools

Once connected, Claude has access to 22 Orbyt tools:

CategoryTools
JobsList, get, create, update status, update details, delete
ContactsList, get, create, update, delete
ActivitiesList, create
CalendarList upcoming, create event
PipelineGet summary with insights
SuggestionsGet agent recommendations
WebhooksList, create, delete, test
IdentityGet current user info

Troubleshooting

Claude doesn't show Orbyt in the tools panel:

  • Make sure the config file is valid JSON (no trailing commas)
  • Verify the URL is exactly https://www.orbytjobs.ai/mcp.json
  • Restart Claude Desktop completely (quit and reopen)

Getting 403 errors:

  • Confirm your Orbyt plan is Ultra
  • Check that the API key is correct and not revoked

Getting 429 errors:

  • You have hit the rate limit (60 requests/minute or 50,000/month)
  • Wait a moment and try again

Tips

  • Use read-only tokens if you only want Claude to view your pipeline (safer for shared computers)
  • Claude Desktop maintains the MCP connection across conversations, so you do not need to re-authenticate
  • Ask Claude to build a morning briefing by combining pipeline status, upcoming interviews, and follow-up suggestions in one query
Claude Desktop config (merge into claude_desktop_config.json)Download
{
  "mcpServers": {
    "orbyt": {
      "url": "https://www.orbytjobs.ai/mcp.json",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY_HERE"
      }
    }
  }
}

Other integration guides

ChatGPT GPT ActionsOpenAPI

Import the Orbyt OpenAPI 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 supports MCP servers natively, so setup takes under a minute.

Ready to build?

Ship it.

Begin.

On this page

OverviewPrerequisitesStep 1: Generate an API KeyStep 2: Configure Claude DesktopStep 3: Restart Claude DesktopStep 4: Try It OutAvailable ToolsTroubleshootingTips

Resources

Endpoint ReferenceOpenAPI SpecMCP Manifest

Job Search

  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI
  • Healthcare Workers
  • All job types →

Guides

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

Tools

  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • Compare Offers
  • AI Skills Assessment
  • Salary Widget
  • All free tools →

Reference

  • Glossary
  • Methodology
  • Dataset
  • Changelog

Salary Data

  • Salary Explorer
  • 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 →

Product

  • Orbyt One
  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt Labs

Developers

  • Developer Hub
  • Orbyt API
  • Intelligence API

Integrations

  • Claude Desktop
  • ChatGPT
  • Zapier
  • All integrations →

Account

  • Sign In
  • Sign Up

Company

  • Blog
  • About
  • Founder
  • Press
  • Contact
  • Support
Job Search
  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI
  • Healthcare Workers
  • All job types →
Guides
  • Career Guides
  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports
Tools
  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • Compare Offers
  • AI Skills Assessment
  • Salary Widget
  • All free tools →
Reference
  • Glossary
  • Methodology
  • Dataset
  • Changelog
Salary Data
  • Salary Explorer
  • 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 →
Product
  • Orbyt One
  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt Labs
Developers
  • Developer Hub
  • Orbyt API
  • Intelligence API
  • Claude Desktop
  • ChatGPT
  • Zapier
  • All integrations →
Company
  • Blog
  • About
  • Founder
  • Press
  • Contact
  • Support
Sign InSign Up
Orbyt

© 2026 Purecraft LLC  All rights reserved.

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