The LinkedIn MCP Server is a specialized implementation designed to interact with the LinkedIn Community Management API. It leverages the Model Context Protocol (MCP) to facilitate seamless integration and communication with LinkedIn's services. This server can be hosted locally or remotely and utilizes the HTTP+SSE transport as defined in the MCP specification.
user-info
: Retrieves information about the currently logged-in user, including name, headline, and profile picture.create-post
: Allows the creation of new posts on LinkedIn.lts/jod
)Community Management API
product installed and http://localhost:3001/callback
added to the authorized redirect URLs.shell
pnpm install
JWT_SECRET
:shell
cp .env.template .env && vi .env
shell
pnpm run dev
json
{
"mcpServers": {
"linkedin": {
"url": "http://localhost:3001/sse"
}
}
}
Start the MCP Inspector to debug this server, which is available as a package script:
pnpm run inspector
Access the inspector in your browser at http://localhost:5173
.
This project is an MCP Server specifically designed for interacting with the LinkedIn API. It provides tools for user information retrieval and post creation, making it a valuable resource for developers looking to integrate LinkedIn functionality into their applications.