lineai mcp server for VS Code
io.github.lineai-intelligence/lineai-mcp-server
An MCP Server to utilize Lineai's rich software dependency data in your AI programming assistant.
client:VS Code
transport:stdio
runtime:pypi
Install lineai mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lineai-server-host",
"description": "LINEAI_SERVER_HOST",
"password": true
},
{
"type": "promptString",
"id": "lineai-username",
"description": "LINEAI_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "lineai-password",
"description": "LINEAI_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "lineai-workspace-name",
"description": "LINEAI_WORKSPACE_NAME",
"password": true
},
{
"type": "promptString",
"id": "lineai-debug-mode",
"description": "LINEAI_DEBUG_MODE",
"password": true
}
],
"servers": {
"lineai-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"lineai-mcp-server"
],
"env": {
"LINEAI_SERVER_HOST": "${input:lineai-server-host}",
"LINEAI_USERNAME": "${input:lineai-username}",
"LINEAI_PASSWORD": "${input:lineai-password}",
"LINEAI_WORKSPACE_NAME": "${input:lineai-workspace-name}",
"LINEAI_DEBUG_MODE": "${input:lineai-debug-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs