Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.brac/particlr-mcp

NPM · @PARTICLR/MCP · SCANNED AUG 3

Agents author particlr .prt particle effects headlessly: validate, simulate, render to PNG, patch.

Available components

62 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
Schema Quality & AI Usability84
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1404 tokens (~117/item across 12 items; 9 tools + 3 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @particlr/mcp

# add to Claude Code
claude mcp add brac-particlr-mcp -- npx -y @particlr/mcp
# add to Codex CLI
codex mcp add brac-particlr-mcp -- npx -y @particlr/mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "brac-particlr-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@particlr/mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add brac-particlr-mcp --command npx --arg -y --arg @particlr/mcp
# ~/.hermes/config.yaml
mcp_servers:
  brac-particlr-mcp:
    command: "npx"
    args: ["-y", "@particlr/mcp"]
// mcp.json
{
  "mcpServers": {
    "brac-particlr-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@particlr/mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +26
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Schema quality: unverified → excellent functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Licence: MIT functional
  • 2 Aug 26 +10
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
    • Capabilities: pass → unverified functional
  • 1 Aug 26 −2
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 28

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@particlr/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 96 packages

96 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 9 exposed · ~1,338 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
get_effect ~58

Fetch the canonical stored .prt text for a handle — use this for final delivery/export after iterating. Handles live only for this session (server process); they do not survive a reconnect.

NameTypeReqDescription
handlestringyesA handle from open_effect.
NameTypeReqDescription
docstringyesThe canonical stored .prt text — for final delivery/export.
handlestringyes

No examples provided.

get_preset ~61

Fetch one shipped preset by name (stem): its raw .prt text plus a parsed summary. Unknown name returns an error listing the valid names.

NameTypeReqDescription
namestringyesThe preset filename stem (see list_presets), e.g. "explosion".
NameTypeReqDescription
docstringyesThe preset's raw .prt JSON text.
namestringyes
summaryobjectyes

No examples provided.

get_reference ~104

Fetch reference material inline: topic "format-spec" (the .prt format spec, markdown) or "schema" (the JSON Schema for a .prt document).

NameTypeReqDescription
topicstringyes"format-spec" = the .prt format spec (markdown); "schema" = the JSON Schema for a .prt document; "authoring-guide" = how to author a .prt that LOOKS good (units, blend/layer/curve/trail recipes, comm…
NameTypeReqDescription
formatstringyes
textstringyes
topicstringyes

No examples provided.

list_presets ~32

List the shipped .prt presets (name, layer count, schemaVersion) — the few-shot authoring corpus.

Input schema present but exposes no named parameters.

NameTypeReqDescription
presetsarrayyes

No examples provided.

open_effect ~111

Validate a .prt document and store it under a session handle so you can iterate without resending the text. Returns the handle + validate fields (ok, schemaVersion, warnings, errors); pass the handle to patch_effect / validate_effect / simulate_effect / render_effect. Handles live only for this session (server process); they do not survive a reconnect. Capped at 64 per session.

NameTypeReqDescription
docstringyesThe .prt document as a JSON string. Validated and stored under a fresh handle.
NameTypeReqDescription
errorsarrayyes
handlestring|nullyesA session handle ("fx-1", …) to pass as `handle` to patch/validate/simulate/render; null on failure.
migratedFromnumber|nullyesThe doc's ORIGINAL schemaVersion if it was migrated up, else null.
okbooleanyes
schemaVersionnumber|nullyes
warningsarrayyes

No examples provided.

patch_effect ~156

Apply a small list of RFC 6902 ops (replace/add/remove) to a stored effect, then re-validate. Iterate by sending only the diff, not the whole document. Any failure — bad path/index or a post-patch validation error — rolls back: the stored doc is left unchanged and the failing op index is named. Handles live only for this session (server process); they do not survive a reconnect.

NameTypeReqDescription
handlestringyesA handle from open_effect.
opsarrayyesRestricted RFC 6902 ops (replace/add/remove) applied IN ORDER (max 64). Any failure — bad path, bad index, or a post-patch validation error — rolls back: the stored doc is unchanged.
NameTypeReqDescription
errorsarrayyes
handlestring|nullyesA session handle ("fx-1", …) to pass as `handle` to patch/validate/simulate/render; null on failure.
migratedFromnumber|nullyesThe doc's ORIGINAL schemaVersion if it was migrated up, else null.
okbooleanyes
schemaVersionnumber|nullyes
warningsarrayyes

No examples provided.

render_effect ~512

CPU-rasterize a .prt effect to PNG image(s): by default one contact-sheet PNG of 16 frames evenly spaced over [0, completion||duration], auto-framed. All builtin + embedded-PNG textures, all five blend modes, flipbook, stretch/velocity-align/flip, per-particle + connect-ribbon TRAILS, and layer draw order are rendered; DISSOLVE is NOT rasterized (a dissolve doc still renders its sprites). Deterministic: frames snap to the same 1/60 trajectory as simulate_effect. Returns image block(s) + a renderHash, the snapped times, the viewport, and the grid. An invalid doc returns validate-shaped errors.

NameTypeReqDescription
backgroundstringBackground: "checker" (default), "transparent", or a hex color (#rgb / #rrggbb / #rrggbbaa).
docstringThe .prt document as a JSON string.
fpsnumberFrames at 0, 1/fps, 2/fps … up to the range end. Overrides `frames`.
framesintegerNumber of evenly-spaced frames over [0, completion||duration]. Default 16; max 64.
handlestringA handle from open_effect — use instead of doc to avoid resending the document.
heightintegerFrame height in px. Default 256; cap 1024 longest edge.
layoutstring"sheet" (default): one contact-sheet PNG. "separate": one PNG per frame (same caps).
overrunSecondsnumberRender past the loop seam: extends the frames/fps time range to duration + overrunSeconds. Looping docs only; ignored (with a warning) otherwise. Explicit `times` already accept any time.
seedintegerOverride the doc's authored seed. Default: the doc's seed.
supersamplenumberAnti-alias by rendering at 2x/4x then downsampling. Default off (crisp, byte-golden).
timesarrayExplicit render times in seconds (snapped to 1/60 boundaries). Max 64. Overrides frames/fps.
viewportobjectExplicit world-space viewport. Auto-framed from a bounds scan (+12% margin) when omitted.
widthintegerFrame width in px. Default 256; cap 1024 longest edge.
NameTypeReqDescription
completionTimenumber|nullyes
frameHeightintegeryes
frameWidthintegeryes
gridyesContact-sheet grid; null in separate mode.
imageCountintegeryes
layoutstringyes
renderHashstringyeshex8 over normalizedDoc + seed + snapped times + size + viewport + bg — distinct from the sim statehash.
snappedTimesarrayyesThe actual step-snapped render times (seconds).
viewportobjectyes
warningsarrayyes

No examples provided.

simulate_effect ~206

Deterministically step a .prt effect in Node (no rendering) and report per-layer live counts over time, peak vs capacity, spatial bounds, completion, and a statehash plus the exact {seed, dt, steps} to reproduce it. Same seed + dt sequence => identical output. Validates first; an invalid doc returns validate-shaped errors.

NameTypeReqDescription
docstringThe .prt document as a JSON string.
dtnumberFixed timestep. Default 1/60; clamped to (0, 0.05] (the runtime MAX_DT).
durationnumberSeconds to simulate. Default 3; capped at 60.
handlestringA handle from open_effect — use instead of doc to avoid resending the document.
sampleIntervalnumberSeconds between count samples. Default 0.1.
seedintegerOverride the doc's authored seed. Default: the doc's seed.
NameTypeReqDescription
boundsyesAxis-aligned bounds over every live particle across the run; null if none ever spawned.
completedbooleanyesTrue if the effect reached isDone (one-shots); false for looping/unfinished.
completionTimenumber|nullyesSeconds at which isDone first held; null if never.
echoobjectyesThe exact inputs used after defaulting/clamping — replay these for an identical statehash.
layersarrayyes
statehashstringyeshex8 FNV-1a over the final public sim state — reproducible per {seed, dt, steps}.
warningsarrayyes

No examples provided.

validate_effect ~98

Validate a .prt document (JSON string) against the real parse -> migrate -> validate pipeline. Returns ok + the canonical normalized doc + schemaVersion (and the pre-migration version), or structured, path-anchored errors worded for you to fix.

NameTypeReqDescription
docstringThe .prt document as a JSON string.
handlestringA handle from open_effect — use instead of doc to avoid resending the document.
NameTypeReqDescription
errorsarrayyes
migratedFromnumber|nullyesThe doc's ORIGINAL schemaVersion if it was migrated up, else null.
normalizedDocstring|nullyesCanonical serializeParticle() output on success (agents iterate on this); null on failure.
okbooleanyes
schemaVersionnumber|nullyesThe doc's schemaVersion after migration; null when parsing failed.
warningsarrayyes

No examples provided.