# RocketReach — how to use (mcp.ai)

Connect your RocketReach account and use 12 tools for CRM straight from your AI agent. Connect with your own API key. RocketReach locates and verifies professional contact details, helping sales and recruiters reach leads and candidates more efficiently.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_rocket_reach?ms=1787291280000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `rocket_reach_check_person_status`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/rocket_reach`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/rocket_reach/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/rocket_reach/check/person/status` — Tool to check the status of multiple person lookup requests. Use when you need to retrieve the current status of previously initiated person lookups.
  - body: { ids: string[] }
- `POST https://api.mcp.ai/api/rocket_reach/get/account` — Tool to retrieve account information for the authenticated user. Use when you need to fetch the current user's account details.
- `POST https://api.mcp.ai/api/rocket_reach/get/company/funding` — Tool to retrieve funding details for a specified company. Use when you need to fetch historical funding rounds by company domain.
  - body: { domain: string }
- `POST https://api.mcp.ai/api/rocket_reach/get/company/growth` — Tool to get growth metrics for a specified company domain. Use when historical company growth data is needed after confirming the exact company domain.
  - body: { domain: string }
- `POST https://api.mcp.ai/api/rocket_reach/get/company/industries` — Tool to list industries associated with a specified company. Tries multiple RocketReach endpoints using the provided identifier (ID, domain, or name) and extracts industry information from the respons
  - body: { company_id: string }
- `POST https://api.mcp.ai/api/rocket_reach/get/company/size` — Tool to retrieve size metrics of a company. Use when you have a company's domain to get its employee size range.
  - body: { domain: string }
- `POST https://api.mcp.ai/api/rocket_reach/get/company/tech/stack` — Tool to get technology stack for a company by domain. Use when you need to discover the tech a company uses after confirming its domain.
  - body: { domain: string }
- `POST https://api.mcp.ai/api/rocket_reach/lookup/company` — Tool to lookup a company's domain via RocketReach Company Lookup API. Use when you need the company domain by name for downstream actions like funding, size, or tech stack.
  - body: { name: string }
- `POST https://api.mcp.ai/api/rocket_reach/lookup/person` — Tool to lookup detailed person information from RocketReach. Use when you need to fetch a person's profile by email.
  - body: { email: string }
- `POST https://api.mcp.ai/api/rocket_reach/lookup/person/and/company` — Tool to lookup both person and company information in a single request. Use when you need comprehensive profile data including employment details. At least one search parameter (name, email, id, linke
  - body: { id?: integer, name?: string, email?: string, title?: string, npi_number?: integer, webhook_id?: integer, lookup_type?: string, linkedin_url?: string, current_employer?: string, return_cached_emails?: boolean }
- `POST https://api.mcp.ai/api/rocket_reach/search/companies` — Tool to list companies by name or keyword. Use when you need to discover companies matching specific criteria after obtaining an API key.
  - body: { page?: integer, limit?: integer, query: string }
- `POST https://api.mcp.ai/api/rocket_reach/search/people` — Tool to search for people by name, title, or keywords. Use when you need to discover individuals matching specific criteria after obtaining an API key.
  - body: { page?: integer, limit?: integer, query: string }

## Example prompts
- "What can I do in RocketReach?"
- "Show me a summary of my RocketReach account"

## More
- Page: https://mcp.ai/rocket_reach
- Agent spec (llms.txt): https://mcp.ai/rocket_reach/llms.txt
- Postman collection: https://mcp.ai/rocket_reach/postman.json
