# š Quick Start Guide
Get the LinkedIn Profile Data Mining MCP Server running in 5 minutes!
## Step 1: Get Your API Keys (2 minutes)
### Required Keys:
1. **Apollo.io API Key**
- Go to [apollo.io](https://apollo.io) ā Sign up ā Settings ā Integrations ā Generate API Key
2. **OpenAI API Key**
- Go to [platform.openai.com](https://platform.openai.com) ā Sign up ā API Keys ā Create new secret key
## Step 2: Configure the Server (1 minute)
```bash
# Navigate to the server directory
cd smithery-servers/profile-searcher
# Copy the example configuration
cp .env.example .env
# Edit the .env file with your API keys
nano .env
```
Add your keys to the `.env` file:
```env
APOLLO_API_KEY=your_apollo_key_here
OPENAI_API_KEY=sk-your_openai_key_here
```
## Step 3: Start the Server (30 seconds)
```bash
# Install dependencies (if not already done)
npm install
# Start the development server
npm run dev
```
## Step 4: Test It Works (1 minute)
The server should start on port 8181. You can now use it with Claude Desktop or any MCP client!
### Example Usage:
- **Search for profiles**: "Find AI engineers on LinkedIn"
- **Extract contact info**: "Get contact information for these LinkedIn profiles"
- **Export data**: "Export all found profiles to CSV"
## For Claude Desktop Users
Add this to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"profile-searcher": {
"command": "node",
"args": ["/Users/amankale/Desktop/MCPs/smithery-servers/profile-searcher/dist/index.js"],
"env": {
"APOLLO_API_KEY": "your_apollo_key_here",
"OPENAI_API_KEY": "sk-your_openai_key_here"
}
}
}
}
```
## š You're Ready!
The server now has access to:
- ā LinkedIn profile search
- ā Contact information extraction
- ā AI-powered query generation
- ā CSV export functionality
- ā Database storage
## Need Help?
- š Full documentation: [README.md](./README.md)
- āļø Detailed configuration: [CONFIGURATION.md](./CONFIGURATION.md)
- š Issues? Check the troubleshooting section in CONFIGURATION.md
## Pro Tips:
1. **Start with small searches** (5-10 profiles) to test your setup
2. **Monitor your API usage** - Apollo.io has rate limits
3. **Enable debug mode** (`DEBUG=true`) if you encounter issues
4. **Export to CSV** regularly to backup your data
Happy data mining! šš
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/amankale376/profile-researcher'
If you have feedback or need assistance with the MCP directory API, please join our Discord server