CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Unlinked

larsbaunwall/unlinked
3authSTDIOregistry active
Summary

Pulls your LinkedIn professional profile directly into Claude or Copilot using LinkedIn's official Member Data Portability API. You get read-only access to positions, education, skills, certifications, projects, and activity data without scraping or manual copy-paste. Five tools cover the basics: fetch full profile, get activity feed, pull specific sections by name, poll recent changes via changelog API, and diagnose authorization issues. Currently EEA and Switzerland only, thanks to the Digital Markets Act. Setup is straightforward if you can generate a member access token from a LinkedIn Developer app. Useful when you want AI assistants to have accurate professional context about you for resume writing, job applications, or career planning conversations.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Unlinked logo 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

ToolDescription
linkedin_get_profileGet the user's LinkedIn résumé: bio, work history, education, skills, certifications, projects, etc.
linkedin_get_activityGet the user's LinkedIn activity: connections, posts, articles, comments, likes, job applications
linkedin_get_sectionGet raw data for one specific LinkedIn section by exact name
linkedin_get_recent_changesGet recent changes to the user's LinkedIn data (past 28 days), with cursor-based polling
linkedin_check_accessCheck whether the user has granted LinkedIn data access — useful for diagnosing missing data

Configuration

Environment variableRequiredDescription
LINKEDIN_TOKENYesLinkedIn access token. Accepts Bearer <token> or a bare token.
LINKEDIN_API_VERSIONNoAPI 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

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

LINKEDIN_TOKEN*secret

LinkedIn access token from the OAuth Token Generator. Accepts a bare token or 'Bearer <token>'. Required for EEA/Switzerland members only.

LINKEDIN_API_VERSION

LinkedIn API version in YYYYMM format (e.g. 202312). Defaults to 202312 when unset.

Registryactive
Package@larsbaunwall/unlinked
TransportSTDIO
AuthRequired
UpdatedMay 10, 2026
View on GitHub