Skip to content
VS Code

MCP Event Intelligence for VS Code

io.github.sarooo17/event-intelligence

Durable temporal event intelligence: composite triggers, derived events, and runtime wakeups.

client:VS Code transport:stdio runtime:npm

Install MCP Event Intelligence in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "data-dir",
      "description": "DATA_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-write-enabled",
      "description": "MCP_WRITE_ENABLED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "runtime-wake-targets-json",
      "description": "RUNTIME_WAKE_TARGETS_JSON",
      "password": true
    },
    {
      "type": "promptString",
      "id": "typesafe-api-key",
      "description": "TYPESAFE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "typesafe-model",
      "description": "TYPESAFE_MODEL",
      "password": true
    }
  ],
  "servers": {
    "event-intelligence": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-event-intelligence"
      ],
      "env": {
        "DATA_DIR": "${input:data-dir}",
        "MCP_WRITE_ENABLED": "${input:mcp-write-enabled}",
        "RUNTIME_WAKE_TARGETS_JSON": "${input:runtime-wake-targets-json}",
        "TYPESAFE_API_KEY": "${input:typesafe-api-key}",
        "TYPESAFE_MODEL": "${input:typesafe-model}"
      }
    }
  }
}

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

MCP Event Intelligence in other clients