knowmind for VS Code
io.github.schubeler-consulting/knowmind
AI agent memory & knowledge graph, hosted in Germany (GDPR). Recall, relations, store via MCP.
client:VS Code
transport:stdio
runtime:npm
Install knowmind in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "knowmind-token",
"description": "KNOWMIND_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "knowmind-api-url",
"description": "KNOWMIND_API_URL",
"password": true
}
],
"servers": {
"knowmind": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"knowmind"
],
"env": {
"KNOWMIND_TOKEN": "${input:knowmind-token}",
"KNOWMIND_API_URL": "${input:knowmind-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs