{
  "info": {
    "name": "RocketReach — mcp.ai",
    "description": "REST API for the RocketReach MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/rocket_reach",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "rocket_reach_check_person_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/person/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "person",
            "status"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Tool to retrieve account information for the authenticated user. Use when you need to fetch the current user's account details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_get_company_funding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/funding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "funding"
          ]
        },
        "description": "Tool to retrieve funding details for a specified company. Use when you need to fetch historical funding rounds by company domain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_get_company_growth",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/growth",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "growth"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_get_company_industries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/industries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "industries"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"company_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_get_company_size",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/size",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "size"
          ]
        },
        "description": "Tool to retrieve size metrics of a company. Use when you have a company's domain to get its employee size range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_get_company_tech_stack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/tech/stack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "tech",
            "stack"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_lookup_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lookup/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lookup",
            "company"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_lookup_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lookup/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lookup",
            "person"
          ]
        },
        "description": "Tool to lookup detailed person information from RocketReach. Use when you need to fetch a person's profile by email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_lookup_person_and_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lookup/person/and/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lookup",
            "person",
            "and",
            "company"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"email\": \"\",\n  \"title\": \"\",\n  \"npi_number\": 0,\n  \"webhook_id\": 0,\n  \"lookup_type\": \"\",\n  \"linkedin_url\": \"\",\n  \"current_employer\": \"\",\n  \"return_cached_emails\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_search_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "companies"
          ]
        },
        "description": "Tool to list companies by name or keyword. Use when you need to discover companies matching specific criteria after obtaining an API key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocket_reach_search_people",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/people",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "people"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}