Skip to content
VS Code

timps for VS Code

io.github.sandeeprdy1729/timps

Persistent memory with contradiction detection, burnout monitoring, and 69 intelligence tools.

client:VS Code transport:stdio runtime:npm

Install timps in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "timps-url",
      "description": "TIMPS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "timps-memory-url",
      "description": "TIMPS_MEMORY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "timps-api-key",
      "description": "TIMPS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "timps-project-path",
      "description": "TIMPS_PROJECT_PATH",
      "password": true
    }
  ],
  "servers": {
    "timps": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@timps-ai/timps-mcp"
      ],
      "env": {
        "TIMPS_URL": "${input:timps-url}",
        "TIMPS_MEMORY_URL": "${input:timps-memory-url}",
        "TIMPS_API_KEY": "${input:timps-api-key}",
        "TIMPS_PROJECT_PATH": "${input:timps-project-path}"
      }
    }
  }
}

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

timps in other clients