Skip to content
VS Code

statecore mcp for VS Code

io.github.yul761/statecore-mcp

Auditable memory for coding agents: evidence chains, supersession history, keyless embedded SQLite

client:VS Code transport:stdio runtime:npm

Install statecore mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "statecore-scope",
      "description": "STATECORE_SCOPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "feature-llm",
      "description": "FEATURE_LLM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "model-api-key",
      "description": "MODEL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "model-base-url",
      "description": "MODEL_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "model-name",
      "description": "MODEL_NAME",
      "password": true
    }
  ],
  "servers": {
    "statecore-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "statecore-mcp"
      ],
      "env": {
        "STATECORE_SCOPE": "${input:statecore-scope}",
        "FEATURE_LLM": "${input:feature-llm}",
        "MODEL_API_KEY": "${input:model-api-key}",
        "MODEL_BASE_URL": "${input:model-base-url}",
        "MODEL_NAME": "${input:model-name}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

statecore mcp in other clients