home / mcp / linkedin bulk data scraper mcp server
Provides access to the LinkedIn Bulk Data Scraper API with multiple run modes and built-in endpoints.
Configuration
View docs{
"mcpServers": {
"bach-ai-tools-bachai-linkedin-bulk-data-scraper": {
"command": "python",
"args": [
"server.py"
],
"env": {
"API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}You can access the Linkedin Bulk Data Scraper API through an MCP server that simplifies setup and management. This server provides multiple run modes, centralized API key handling, and a collection of endpoints for interacting with the LinkedIn Bulk Data Scraper data.
You use an MCP client to connect to the Linkedin Bulk Data Scraper MCP Server. Choose one of the available run modes to start the server, then point your application to the MCP server to access all endpoints.
Prerequisites: Python and the pip package manager, or the uvx runtime for quick execution.
Option A — Install via pip from PyPI and run with uvx (recommended for quick setup):
pip install bach-linkedin_bulk_data_scraper
```
To run with uvx (auto-installs uvx and runs the server):
```
uvx --from bach-linkedin_bulk_data_scraper bach_linkedin_bulk_data_scraper
```
To run with a specific version using uvx:
```
uvx --from bach-linkedin_bulk_data_scraper@latest bach_linkedin_bulk_data_scraperOption B — Install from source and run in development mode:
pip install -e .Then start the server in development mode using Python:
python server.pyOption C — After installation, run the CLI command that corresponds to the installed package:
bach_linkedin_bulk_data_scraperReturns game of thrones data via GET /goat
Returns game of thrones data via POST /goat
Returns IP address via POST /ip_address
Returns IP address via GET /ip_address
Returns random advice via GET /advice
Returns random advice via POST /advice
Shuffles a string via GET /shuffle with parameter string
Shuffles a string via POST /shuffle with parameter string
Returns number facts via GET /number_facts
Returns number facts via POST /number_facts
Returns a joke via GET /joke
Returns a joke via POST /joke
Returns cat facts via GET /cat_fact
Returns cat facts via POST /cat_fact
Returns dog fact via GET /dog_fact
Returns dog fact via POST /dog_fact
Returns a dog image via GET /random_dog_image
Returns a dog image via POST /random_dog_image
Returns random trivia question via GET /random_triva_question
Returns random trivia question via POST /random_triva_question
Returns USA university list via GET /universities_list
Returns USA universities list via POST /universities_list
Returns json placeholder via POST /json_placeholder
Returns json placeholder via GET /json_placeholder
Checks server health via POST /{ping}
Checks server health via GET /{ping}