seam runtime for VS Code
io.github.blackhatshiftey/seam-runtime
SEAM: local-first memory runtime for AI agents, with retrieval and glassbox provenance over MCP.
client:VS Code
transport:stdio
runtime:pypi
Install seam runtime in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "seam-db-path",
"description": "SEAM_DB_PATH",
"password": true
},
{
"type": "promptString",
"id": "seam-pgvector-dsn",
"description": "SEAM_PGVECTOR_DSN",
"password": true
}
],
"servers": {
"seam-runtime": {
"type": "stdio",
"command": "uvx",
"args": [
"seam-runtime"
],
"env": {
"SEAM_DB_PATH": "${input:seam-db-path}",
"SEAM_PGVECTOR_DSN": "${input:seam-pgvector-dsn}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs