Skip to content
VS Code

Particles for VS Code

org.linkedparticles/particles

An append-only ledger of sourced, dated, confidence-scored claims your agent cites and you audit

client:VS Code transport:stdio runtime:pypi

Install Particles in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "database-url",
      "description": "DATABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "particles-config",
      "description": "PARTICLES_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "particles": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "linkedparticles"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "DATABASE_URL": "${input:database-url}",
        "PARTICLES_CONFIG": "${input:particles-config}"
      }
    }
  }
}

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

Particles in other clients