limelink mcp server for VS Code
io.github.hellovelop/limelink-mcp-server
MCP server for Limelink dynamic links with deep linking, social previews, and UTM tracking
client:VS Code
transport:stdio
runtime:npm
Install limelink mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "limelink-api-key",
"description": "LIMELINK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "limelink-project-id",
"description": "LIMELINK_PROJECT_ID",
"password": true
}
],
"servers": {
"limelink-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"limelink-mcp-server"
],
"env": {
"LIMELINK_API_KEY": "${input:limelink-api-key}",
"LIMELINK_PROJECT_ID": "${input:limelink-project-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs