npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@larsbaunwall/unlinked

v1.0.4

Published

MCP server that brings your LinkedIn professional profile and experience into AI assistants like Claude Desktop and GitHub Copilot.

Readme

Unlinked

Bring your LinkedIn professional profile into AI assistants — without copy-pasting, scraping, or guessing.


Unlinked is a TypeScript MCP server that connects your LinkedIn professional profile and experience to any Model Context Protocol client — Claude Desktop, GitHub Copilot, and others. It reads your data directly from LinkedIn's official Member Data Portability API, so your assistant always has accurate, up-to-date context about who you are professionally.

:eu: EEA / Switzerland only. LinkedIn's Member Data Portability API is currently available exclusively to members located in the European Economic Area and Switzerland. Thank you, Digital Markets Act (DMA)!

What it does

Once connected, your AI assistant can:

  • Read your full professional profile — positions, education, skills, certifications, projects, languages, honours, publications, patents, and more
  • Fetch any specific LinkedIn data domain by name
  • Poll for recent profile changes via the LinkedIn changelog API
  • Diagnose authorization status so you can quickly identify consent or permission issues

All data access is read-only. Your access token is used only to talk to LinkedIn and is never stored, logged, or echoed back.

Prerequisites

  • Node.js 22+
  • A LinkedIn Developer app with the Member Data Portability API (Member) product enabled (follow this guide)
  • A member access token from the LinkedIn OAuth Token Generator (requires EEA/Switzerland membership)

Setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "unlinked": {
      "command": "npx",
      "args": ["-y", "@larsbaunwall/unlinked"],
      "env": {
        "LINKEDIN_TOKEN": "<your_access_token>"
      }
    }
  }
}

The config file is typically at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

GitHub Copilot (VS Code)

Add to your user-level MCP config (File → Preferences → MCP Servers) or a workspace .vscode/mcp.json:

{
  "servers": {
    "unlinked": {
      "command": "npx",
      "args": ["-y", "@larsbaunwall/unlinked"],
      "env": {
        "LINKEDIN_TOKEN": "<your_access_token>"
      }
    }
  }
}

Tools

| Tool | Description | | --- | --- | | linkedin_get_profile | Get the user's LinkedIn résumé: bio, work history, education, skills, certifications, projects, etc. | | linkedin_get_activity | Get the user's LinkedIn activity: connections, posts, articles, comments, likes, job applications | | linkedin_get_section | Get raw data for one specific LinkedIn section by exact name | | linkedin_get_recent_changes | Get recent changes to the user's LinkedIn data (past 28 days), with cursor-based polling | | linkedin_check_access | Check whether the user has granted LinkedIn data access — useful for diagnosing missing data |

Configuration

| Environment variable | Required | Description | | --- | --- | --- | | LINKEDIN_TOKEN | Yes | LinkedIn access token. Accepts Bearer <token> or a bare token. | | LINKEDIN_API_VERSION | No | API version in YYYYMM format. Defaults to 202312. |

Development

npm install
npm run build
npm run dev        # run directly from source with .env
npm run inspect    # test with MCP Inspector

See AGENTS.md for implementation guidance.

License

MIT