@linkedctl/mcp
v0.5.1
Published
MCP server for LinkedIn API integration
Downloads
935
Maintainers
Readme
@linkedctl/mcp
MCP (Model Context Protocol) server for LinkedIn API integration -- the AI-tool interface used by linkedctl.
Installation
npm install @linkedctl/mcpRequires Node.js >= 24.
Overview
This package provides an MCP server that exposes LinkedIn API operations as tools for AI assistants (Claude, Cursor, etc.). It registers tools for creating posts, checking authentication status, and revoking tokens.
For full MCP integration documentation and available tools, see the main project.
Note: For end-user usage with Claude Desktop or other MCP clients, install the
linkedctlumbrella package instead. This package is for programmatic access to the MCP server.
Usage with Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"linkedctl": {
"command": "npx",
"args": ["linkedctl", "mcp"]
}
}
}Usage with Claude Code
claude mcp add linkedctl -- npx linkedctl mcpUsage with Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"linkedctl": {
"command": "npx",
"args": ["linkedctl", "mcp"]
}
}
}Usage with Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"linkedctl": {
"command": "npx",
"args": ["linkedctl", "mcp"]
}
}
}