mcp server for VS Code
io.github.kstreak2026/mcp-server
Access your KStreak notes, Knowledge Ledger, tasks & goals from Claude, ChatGPT, Cursor, or any MCP.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kstreak-api-key",
"description": "KSTREAK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kstreak-base-url",
"description": "KSTREAK_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@kstreak/mcp-server"
],
"env": {
"KSTREAK_API_KEY": "${input:kstreak-api-key}",
"KSTREAK_BASE_URL": "${input:kstreak-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs