linkedin-mcp-server vs gemini-skill
Side-by-side comparison to help you pick between these two MCP servers.
linkedin-mcp-server by stickerdaniel | gemini-skill by WJZ-P | |
|---|---|---|
| Stars | ★ 1,900 | ★ 813 |
| 30d uses | — | — |
| Score | 56 | 52 |
| Official | — | — |
| Categories | Web ScrapingBrowser AutomationCommunication | AI / LLM ToolsBrowser AutomationProductivity |
| Language | Python | JavaScript |
| Last commit | this month | 1 mo ago |
linkedin-mcp-server · Summary
MCP server providing LinkedIn API access through browser automation for profiles, companies, jobs, and messaging.
gemini-skill · Summary
MCP server that automates Google Gemini through browser automation for image generation, chat, and image extraction.
linkedin-mcp-server · Use cases
- Automate LinkedIn profile research for recruiting or competitive intelligence
- Streamline job application processes by automating LinkedIn job searches
- Manage professional communications by automating LinkedIn messaging
gemini-skill · Use cases
- Generate images through text prompts in AI assistants
- Automate multi-turn conversations with Gemini
- Extract and download images from chat conversations automatically
- Integrate Gemini capabilities into AI agent workflows
linkedin-mcp-server · Install
Installation
uvx Setup (Recommended)
**Prerequisites:** Install [uv](https://docs.astral.sh/uv/getting-started/installation/).
**Client Configuration:**
{
"mcpServers": {
"linkedin": {
"command": "uvx",
"args": ["linkedin-scraper-mcp@latest"],
"env": { "UV_HTTP_TIMEOUT": "300" }
}
}
}Claude Desktop MCP Bundle
- Download the latest
.mcpbartifact from [releases](https://github.com/stickerdaniel/linkedin-mcp-server/releases/latest) - Click the downloaded file to install it into Claude Desktop
gemini-skill · Install
Installation
Prerequisites
- Node.js ≥ 18
- Chrome/Edge/Chromium browser with Google account logged in
Steps
git clone https://github.com/WJZ-P/gemini-skill.git
cd gemini-skill
npm installConfiguration
Create a .env file in the project root with your configuration:
BROWSER_DEBUG_PORT=40821
BROWSER_HEADLESS=false
DAEMON_TTL_MS=1800000
OUTPUT_DIR=./gemini-imageClaude Desktop Configuration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"gemini": {
"command": "node",
"args": ["<absolute_path_to_gemini-skill>/src/mcp-server.js"]
}
}
}