Sign In

@linkedctl/mcp

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@linkedctl/mcp

MCP server for LinkedIn API integration

Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
19
-58.7%
Maintainers
1
Weekly downloads
 
Created
Source

@linkedctl/mcp

MCP (Model Context Protocol) server for LinkedIn API integration -- the AI-tool interface used by linkedctl.

Installation

npm install @linkedctl/mcp

Requires 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 linkedctl umbrella 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 mcp

Usage 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"]
        }
    }
}

License

AGPL-3.0-only

Keywords

linkedin

FAQs

Package last updated on 09 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts