Titen Memory for VS Code
io.github.ramaaditya49/titen-memory
Evidence-grounded agent memory with mandatory provenance, on local SQLite or Cloudflare D1
client:VS Code
transport:stdio
runtime:npm
Install Titen Memory in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "titen-mcp-url",
"description": "TITEN_MCP_URL",
"password": true
},
{
"type": "promptString",
"id": "titen-api-key",
"description": "TITEN_API_KEY",
"password": true
}
],
"servers": {
"titen-memory": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"titen-memory"
],
"env": {
"TITEN_MCP_URL": "${input:titen-mcp-url}",
"TITEN_API_KEY": "${input:titen-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