memex for VS Code
io.github.stifler7/memex
Temporal engineering context for agents via MCP.
client:VS Code
transport:stdio
runtime:npm
Install memex in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "neo4j-uri",
"description": "NEO4J_URI",
"password": true
},
{
"type": "promptString",
"id": "neo4j-user",
"description": "NEO4J_USER",
"password": true
},
{
"type": "promptString",
"id": "neo4j-password",
"description": "NEO4J_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "gemini-api-key",
"description": "GEMINI_API_KEY",
"password": true
}
],
"servers": {
"memex": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"stifler-memex-mcp"
],
"env": {
"NEO4J_URI": "${input:neo4j-uri}",
"NEO4J_USER": "${input:neo4j-user}",
"NEO4J_PASSWORD": "${input:neo4j-password}",
"GEMINI_API_KEY": "${input:gemini-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