> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orbitmy.co/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP server for Claude, Cursor, and OAuth clients

> Connect Orbit to Claude, Cursor, and other MCP clients over OAuth or Bearer to search and fetch contacts in your private Orbit network.

# MCP

Orbit exposes a Model Context Protocol server so agents can search and fetch contacts in your private network.

## Endpoint

```text theme={null}
https://orbitmy.co/api/mcp
```

## Auth

Two paths:

1. **Browser OAuth** — the client opens Orbit; you approve **read-only** access
2. **Bearer API key** — same `orb_live_…` secret from [API keys](/developers/api-keys)

```http theme={null}
Authorization: Bearer orb_live_…
```

## Tools

### `search_orbit_contacts`

Search the authenticated user's private Orbit network.

| Input   | Type    | Notes                                     |
| ------- | ------- | ----------------------------------------- |
| `query` | string  | Name, company, title, school, or location |
| `limit` | integer | 1–25 · default 10                         |

### `get_orbit_contact`

Fetch one contact (and enrichment) by Orbit contact id.

| Input | Type   | Notes                          |
| ----- | ------ | ------------------------------ |
| `id`  | string | Contact id from search results |

## Cursor example

Add an MCP server entry that points at `https://orbitmy.co/api/mcp` with your preferred auth. Exact JSON varies by Cursor version — use **Settings → MCP** UI if you prefer not to hand-edit config.

## Claude / other clients

Any MCP-capable client that supports remote HTTP servers + OAuth or Bearer can connect the same way. Approve read-only access when prompted.

## Safety

* Tools only see **your** Orbit
* Revoke the API key or OAuth grant to cut access immediately
* Do not paste `orb_live_…` into public prompts or tickets

<Tip>
  Prefer OAuth for interactive agents; prefer API keys for headless scripts.
</Tip>

## Docs vs product MCP

| Server                                 | What it knows             |
| -------------------------------------- | ------------------------- |
| Mintlify docs MCP on `docs.orbitmy.co` | These documentation pages |
| `https://orbitmy.co/api/mcp`           | **Your** private contacts |

Install the docs skill for agents writing against Orbit:

<Prompt description="Install the Orbit docs skill" actions={["copy", "cursor"]}>
  npx skills add [https://docs.orbitmy.co](https://docs.orbitmy.co)
</Prompt>
