unlinked for VS Code
io.github.larsbaunwall/unlinked
MCP server that brings your LinkedIn professional profile and experience into your context.
client:VS Code
transport:stdio
runtime:npm
Install unlinked in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "linkedin-token",
"description": "LINKEDIN_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "linkedin-api-version",
"description": "LINKEDIN_API_VERSION",
"password": true
}
],
"servers": {
"unlinked": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@larsbaunwall/unlinked"
],
"env": {
"LINKEDIN_TOKEN": "${input:linkedin-token}",
"LINKEDIN_API_VERSION": "${input:linkedin-api-version}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs