Search people and companies, inspect contact intelligence, and review company signals in RocketReach — funding, growth, size, and tech stack via the RocketReach API.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure RocketReach API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect RocketReach |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect RocketReach |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ RocketReach │
│ (User Chat) │ │ (OAuth) │ │ (API) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect RR │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ RocketReach│
│ File │ │ Auth │ │ Platform │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for RocketReach again."
# Look up a person by email
clawlink_call_tool --tool "rocket_reach_lookup_person" --params '{"email": "ceo@company.com"}'
# Look up a company
clawlink_call_tool --tool "rocket_reach_lookup_company" --params '{"company_name": "Acme Corp"}'
# Get company funding
clawlink_call_tool --tool "rocket_reach_get_company_funding" --params '{"domain": "acme.com"}'
All RocketReach tool calls are authenticated automatically by ClawLink using the user's connected RocketReach account.
No API key is required in chat. ClawLink stores the credentials securely and injects them into every RocketReach API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for rocketreach in the list.
clawlink_list_tools --integration rocketreach
Response: Returns the live tool catalog for RocketReach.
If RocketReach tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration rocketreach| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
rocket_reach_lookup_person | Look up a person by email | Read |
rocket_reach_lookup_person_and_company | Look up person and company in one call | Read |
rocket_reach_check_person_status | Check status of person lookup requests | Read |
rocket_reach_search_people | Search people by name, title, or keywords | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
rocket_reach_lookup_company | Look up a company by name | Read |
rocket_reach_search_companies | Search companies by name or keyword | Read |
rocket_reach_get_company_funding | Get company funding history | Read |
rocket_reach_get_company_growth | Get company growth metrics | Read |
rocket_reach_get_company_size | Get company employee size | Read |
rocket_reach_get_company_industries | Get company industry tags | Read |
rocket_reach_get_company_tech_stack | Get company technology stack | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
rocket_reach_get_account | Get account information | Read |
clawlink_call_tool --tool "rocket_reach_lookup_person" \
--params '{
"email": "founder@startup.com"
}'
clawlink_call_tool --tool "rocket_reach_lookup_company" \
--params '{
"company_name": "Stripe"
}'
clawlink_call_tool --tool "rocket_reach_get_company_funding" \
--params '{
"domain": "stripe.com"
}'
clawlink_call_tool --tool "rocket_reach_get_company_tech_stack" \
--params '{
"domain": "stripe.com"
}'
clawlink_list_integrations to confirm RocketReach is connected.clawlink_list_tools --integration rocketreach to see the live catalog.clawlink_search_tools with a short query and integration rocketreach.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ lookup → search → get → call │
│ │
│ Example: Lookup person → Get profile → Show contact info │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.rocket_reach_check_person_status.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration rocketreach. |
| Missing connection | RocketReach is not connected. Direct the user to https://claw-link.dev/dashboard?add=rocketreach. |
NO_MATCH | No person or company found for the given criteria. |
INSUFFICIENT_CREDITS | Not enough API credits for this lookup. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.rocketreach.clawlink_describe_tool to verify parameter names and types before calling.共 2 个版本