The LinkedIn Community Management MCP Server is a specialized server designed to interact with the LinkedIn Community Management API. It leverages the Model Context Protocol (MCP) to provide seamless integration and functionality for managing LinkedIn communities. This server can be hosted locally or remotely and implements the draft Third-Party Authorization Flow from the MCP specifications to delegate authorization to LinkedIn's OAuth authorization server.
user-info
: Retrieves information about the currently logged-in user, including their name, headline, and profile picture.create-post
: Allows the creation of new posts on LinkedIn.lts/jod
)http://localhost:3001/callback
added to the authorized redirect URLs.Install dependencies:
shell
pnpm install
Create environment file:
Copy the template file and populate it with your LinkedIn client credentials and a random string secret value for JWT_SECRET
:
shell
cp .env.template .env && vi .env
Run the server:
shell
pnpm run dev
Configure your MCP client:
json
{
"mcpServers": {
"linkedin": {
"url": "http://localhost:3001/sse"
}
}
}
To debug the server, start the MCP Inspector:
pnpm run inspector
Access the inspector in your browser at http://localhost:5173
.
This project is an MCP Server designed to interact with the LinkedIn API, providing tools for community management and user interaction.
No releases published.
No packages published.