linkedin-mcp-server
Verified Safeby Dishant27
Overview
Interacts with the LinkedIn API to search profiles, retrieve details, search jobs, and send messages, enabling LLMs to access professional network data.
Installation
npm startEnvironment Variables
- LINKEDIN_CLIENT_ID
- LINKEDIN_CLIENT_SECRET
Security Notes
Uses environment variables for credentials (LINKEDIN_CLIENT_ID, LINKEDIN_CLIENT_SECRET) and implements OAuth 2.0. The current authentication flow uses the `client_credentials` grant type, which is primarily for server-to-server application access and may not support all user-specific LinkedIn API endpoints (e.g., sending messages, retrieving the authenticated user's profile or network statistics) that typically require an 'Authorization Code Flow' with user consent. Zod is used for input validation on MCP tool parameters. No 'eval' or malicious patterns found. API endpoints are hardcoded, but these are official LinkedIn URLs.
Similar Servers
slack-mcp-server
Provides a Model Context Protocol (MCP) interface for AI models to interact with Slack workspaces, enabling features like message fetching, channel management, and user information retrieval.
AI-Gateway
Provides a playground and lab environment to experiment with the Model Context Protocol (MCP) using Azure API Management to enable plug-and-play AI tools for Large Language Models (LLMs).
mcp-openapi-server
Exposes OpenAPI endpoints as Model Context Protocol (MCP) tools, enabling Large Language Models (LLMs) to discover and interact with REST APIs through a standardized protocol.
boilerplate-mcp-server
Provides a TypeScript boilerplate for developing custom Model Context Protocol (MCP) servers, with an IP geolocation tool as an example.