linkedin-mcpserver vs everything
Side-by-side comparison to help you pick between these two MCP servers.
linkedin-mcpserver by felipfr | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 62 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 14 mo ago | this month |
linkedin-mcpserver · Summary
A TypeScript MCP server integrating LinkedIn API for profile search, job discovery, and messaging capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
linkedin-mcpserver · Use cases
- AI assistants analyzing professional networks and connections
- Job search automation with customized criteria matching
- Recruiting tools for candidate identification and outreach
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
linkedin-mcpserver · Install
Installation
Prerequisites
- Node.js 20+
- npm/yarn
Setup
# Install dependencies
npm install
# Run the development server
npm run start:dev
# Build the server
npm run buildConfiguration
For Claude Desktop:
**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json
**Windows**: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"linkedin-mcp-server": {
"command": "/path/to/linkedin-mcp-server/build/index.js"
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything