snapstate for VS Code
io.github.timbassler88/snapstate
Persistent state for AI agent workflows. Save, resume, and replay multi-step workflows.
client:VS Code
transport:stdio
runtime:npm
Install snapstate in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "snapstate-api-url",
"description": "SNAPSTATE_API_URL",
"password": true
},
{
"type": "promptString",
"id": "snapstate-api-key",
"description": "SNAPSTATE_API_KEY",
"password": true
}
],
"servers": {
"snapstate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"snapstate-sdk"
],
"env": {
"SNAPSTATE_API_URL": "${input:snapstate-api-url}",
"SNAPSTATE_API_KEY": "${input:snapstate-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