prism coder for VS Code
io.github.dcostenco/prism-coder
Session memory for coding agents: local-first recall, drift detection, on-device inference.
client:VS Code
transport:stdio
runtime:npm
Install prism coder in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "brave-api-key",
"description": "BRAVE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gemini-api-key",
"description": "GEMINI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "supabase-url",
"description": "SUPABASE_URL",
"password": true
},
{
"type": "promptString",
"id": "supabase-key",
"description": "SUPABASE_KEY",
"password": true
},
{
"type": "promptString",
"id": "prism-user-id",
"description": "PRISM_USER_ID",
"password": true
},
{
"type": "promptString",
"id": "gcp-project-id",
"description": "GCP_PROJECT_ID",
"password": true
},
{
"type": "promptString",
"id": "vertex-location",
"description": "VERTEX_LOCATION",
"password": true
},
{
"type": "promptString",
"id": "vertex-data-store-id",
"description": "VERTEX_DATA_STORE_ID",
"password": true
}
],
"servers": {
"prism-coder": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"prism-mcp-server"
],
"env": {
"BRAVE_API_KEY": "${input:brave-api-key}",
"GEMINI_API_KEY": "${input:gemini-api-key}",
"SUPABASE_URL": "${input:supabase-url}",
"SUPABASE_KEY": "${input:supabase-key}",
"PRISM_USER_ID": "${input:prism-user-id}",
"GCP_PROJECT_ID": "${input:gcp-project-id}",
"VERTEX_LOCATION": "${input:vertex-location}",
"VERTEX_DATA_STORE_ID": "${input:vertex-data-store-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs