Midas for VS Code
io.github.vornicx/midas
Local-first, source-traceable agent memory — no LLM at ingest, fully offline
client:VS Code
transport:stdio
runtime:pypi
Install Midas in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "midas-mcp-db",
"description": "MIDAS_MCP_DB",
"password": true
},
{
"type": "promptString",
"id": "midas-mcp-embedder",
"description": "MIDAS_MCP_EMBEDDER",
"password": true
},
{
"type": "promptString",
"id": "midas-mcp-max-records",
"description": "MIDAS_MCP_MAX_RECORDS",
"password": true
},
{
"type": "promptString",
"id": "midas-mcp-min-importance",
"description": "MIDAS_MCP_MIN_IMPORTANCE",
"password": true
}
],
"servers": {
"midas": {
"type": "stdio",
"command": "uvx",
"args": [
"midas-memory-mcp"
],
"env": {
"MIDAS_MCP_DB": "${input:midas-mcp-db}",
"MIDAS_MCP_EMBEDDER": "${input:midas-mcp-embedder}",
"MIDAS_MCP_MAX_RECORDS": "${input:midas-mcp-max-records}",
"MIDAS_MCP_MIN_IMPORTANCE": "${input:midas-mcp-min-importance}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs