KIP for VS Code
io.github.ldclabs/kip
Knowledge Graphs to enable memory persistence, knowledge evolution, explainable interaction.
client:VS Code
transport:stdio
runtime:npm
Install KIP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kip-backend-url",
"description": "KIP_BACKEND_URL",
"password": true
},
{
"type": "promptString",
"id": "kip-api-key",
"description": "KIP_API_KEY",
"password": true
}
],
"servers": {
"kip": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ldclabs/kip-mcp-server"
],
"env": {
"KIP_BACKEND_URL": "${input:kip-backend-url}",
"KIP_API_KEY": "${input:kip-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs