- Home
- MCP servers
- RocketReach
RocketReach
- javascript
1
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"meerkats-ai-rocketreach-mcp-server": {
"command": "node",
"args": [
"path/to/rocketreach/dist/index.js"
],
"env": {
"ROCKETREACH_API_KEY": "your_api_key_here"
}
}
}
}You can run a RocketReach MCP Server that connects to the RocketReach API to find emails, phone numbers, and enrich company data. This MCP server enables you to query trusted data sources and integrate those results into your workflows through an MCP client.
How to use
Start by running the MCP server locally or in your environment, then configure your MCP client to connect to the RocketReach MCP server. Once connected, you can request professional and personal emails for individuals, find phone numbers, and enrich company data. Use your MCP client to send requests that map to RocketReach capabilities, and handle responses in your application flow. Ensure your API key remains secure and never exposed in client-side code.
How to install
Prerequisites you need before starting:
Node.js and npm should be installed on your machine. You can verify by running node -v and npm -v in your terminal.
Local setup steps:
Clone the project repository to your development environment.
Install dependencies for the MCP server.
Create a .env file and set your RocketReach API key in it as shown below.
ROCKETREACH_API_KEY=your_api_key_here
Local setup commands
Run the following commands in sequence to set up and start the server locally.
npm install
ROCKETREACH_API_KEY=your_api_key_here
npm run build
npm start
Docker setup
If you prefer using Docker, you can run the server with Docker Compose after you place your API key in a .env file.
docker-compose up -d
Available tools
rocketreach_find_professional_email
Find a professional email for an individual using RocketReach data.
rocketreach_find_personal_email
Find a personal email for an individual.
rocketreach_enrich_company
Enrich company data with RocketReach insights.
rocketreach_find_phone
Find a phone number for an individual.