MCP Catalogs
Home

mcp-linkedin vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-linkedin
by adhikasp
filesystem
by modelcontextprotocol
Stars★ 201★ 85,748
30d uses
Score4177
Official
Categories
CommunicationDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit16 mo agothis month

mcp-linkedin · Summary

MCP server for LinkedIn API interactions with job search and feed retrieval tools.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-linkedin · Use cases

  • Automatically retrieving LinkedIn feed posts without manual browsing
  • Searching and analyzing job listings against personal resumes
  • Integrating LinkedIn data into AI workflows for professional networking
  • Monitoring industry trends through LinkedIn posts

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-linkedin · Install

Installation

Via Smithery:

npx -y @smithery/cli install mcp-linkedin --client claude

Manual Configuration:

{
    "mcpServers": {
        "linkedin": {
            "command": "uvx",
            "args": ["--from", "git+https://github.com/adhikasp/mcp-linkedin", "mcp-linkedin"],
            "env": {
                "LINKEDIN_EMAIL": "your_linkedin_email",
                "LINKEDIN_PASSWORD": "your_linkedin_password"
            }
        }
    }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.