Skip to content
VS Code

plugin for VS Code

ai.circulara/plugin

Circulara Observe MCP plugin - meters your AI agents' token spend and carbon, free tier.

client:VS Code transport:stdio runtime:npm

Install plugin in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "circulara-backend-url",
      "description": "CIRCULARA_BACKEND_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "circulara-tenant-id",
      "description": "CIRCULARA_TENANT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "circulara-token",
      "description": "CIRCULARA_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "circulara-seat-id",
      "description": "CIRCULARA_SEAT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "circulara-user-id",
      "description": "CIRCULARA_USER_ID",
      "password": true
    }
  ],
  "servers": {
    "plugin": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@circulara/plugin"
      ],
      "env": {
        "CIRCULARA_BACKEND_URL": "${input:circulara-backend-url}",
        "CIRCULARA_TENANT_ID": "${input:circulara-tenant-id}",
        "CIRCULARA_TOKEN": "${input:circulara-token}",
        "CIRCULARA_SEAT_ID": "${input:circulara-seat-id}",
        "CIRCULARA_USER_ID": "${input:circulara-user-id}"
      }
    }
  }
}

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

plugin in other clients