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.

Clutter

NPM · CLUTTER-MCP · SCANNED AUG 3

Generate synthetic companies, documents & data via the Clutter API (e.g. to fill SharePoint).

Available components

+21 this week 64 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 (95 of 99), 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 (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability66
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 970 tokens (~48/item across 20 items; 20 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage74
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 23% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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 · clutter-mcp

# add to Claude Code
claude mcp add michaelhologram-clutter-mcp -- npx -y clutter-mcp
# add to Codex CLI
codex mcp add michaelhologram-clutter-mcp -- npx -y clutter-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "michaelhologram-clutter-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "clutter-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add michaelhologram-clutter-mcp --command npx --arg -y --arg clutter-mcp
# ~/.hermes/config.yaml
mcp_servers:
  michaelhologram-clutter-mcp:
    command: "npx"
    args: ["-y", "clutter-mcp"]
// mcp.json
{
  "mcpServers": {
    "michaelhologram-clutter-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "clutter-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.

  • 2 Aug 26 +46
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Dependency health: unverified → partial functional
    • Stability: unverified → 0.20 functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Schema quality: unverified → good functional
    • License: unverified → pass functional
    • Licence: MIT functional
  • 31 Jul 26 −7
    • 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 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 43

    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/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 95 packages

95 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 — 20 exposed · ~970 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
build_org ~179

Start building a synthetic organisation from a prompt. Returns 202 with an orgId. The build runs in the background (minutes) — then poll get_org, or call wait_for_org to block until ready. Omit projectId to auto-create a project (named after the generated company) — the simplest path.

NameTypeReqDescription
locale_languagestringBCP-47, e.g. en-US
projectIdstringExisting project to build into; OMIT to auto-create one
projectNamestringName for the auto-created project (optional)
promptstringyes
ref_org_idstringBuild a variant FROM an existing org
target_systemsarray
web_searchbooleanUse web search for real-world grounding (default true; set false to disable)

No output schema declared.

No examples provided.

build_zip ~35

Start building a single ZIP of all of a run's documents. Poll get_zip_url after.

NameTypeReqDescription
runIdstringyes

No output schema declared.

No examples provided.

clutter_whoami ~22

Return the authenticated Clutter user for the configured API key.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

create_project ~30

Create a new Clutter project. Returns the project (with its id).

NameTypeReqDescription
namestringyes

No output schema declared.

No examples provided.

create_run ~158

Launch a generation run. Returns 202 with a runId — poll get_run or call wait_for_run. kind + params: • doc_generator → { prompt, doc_number (≤300), file_types:[docx|pdf|xlsx|eml|jpg], structure:'flat'|'nested', target_system?, allow_underscores? } • data_generator → { prompt, row_count (≤2000), data_format:'xlsx'|'csv'|'json', data_fields?, target_system? } • doc_metadata_gen → { sourceRunId (a completed doc_generator run), data_format, data_fields?, target_system? }

NameTypeReqDescription
kindstringyes
orgIdstringyes
paramsobject

No output schema declared.

No examples provided.

delete_org ~36

Delete an organisation and ALL its runs/artefacts (S3 + DB). Irreversible.

NameTypeReqDescription
orgIdstringyes

No output schema declared.

No examples provided.

delete_project ~46

Delete a project and EVERYTHING under it — all its organisations, runs, datasets, metadata and artefacts (S3 + DB). Irreversible.

NameTypeReqDescription
projectIdstringyes

No output schema declared.

No examples provided.

delete_run ~39

Delete a run and its artefacts (S3 + DB). Leaves the parent org intact. Irreversible.

NameTypeReqDescription
runIdstringyes

No output schema declared.

No examples provided.

get_document_url ~31

Get a short-lived presigned download URL for a single generated document.

NameTypeReqDescription
documentIdstringyes

No output schema declared.

No examples provided.

get_org ~31

Get an organisation including its full org.json structure. Check `org.status`.

NameTypeReqDescription
orgIdstringyes

No output schema declared.

No examples provided.

get_run ~32

Get a run's status + progress counts. Poll this until status is terminal.

NameTypeReqDescription
runIdstringyes

No output schema declared.

No examples provided.

get_usage ~36

Your Clutter API usage (request counts by route) over a rolling window + the daily quota.

NameTypeReqDescription
windowHoursinteger

No output schema declared.

No examples provided.

get_zip_url ~36

Get a presigned download URL for a run's ZIP (409 until the build is ready).

NameTypeReqDescription
runIdstringyes

No output schema declared.

No examples provided.

list_orgs ~25

List the synthetic organisations in a project.

NameTypeReqDescription
projectIdstringyes

No output schema declared.

No examples provided.

list_projects ~21

List all of your Clutter projects (top-level tenant containers).

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

list_run_documents ~34

List the documents generated by a run (title, format, folderPath, status).

NameTypeReqDescription
runIdstringyes

No output schema declared.

No examples provided.

list_runs ~24

List the generation runs under an organisation.

NameTypeReqDescription
orgIdstringyes

No output schema declared.

No examples provided.

query_org ~48

Ask a grounded natural-language question about an organisation (synchronous, one-shot answer).

NameTypeReqDescription
locale_languagestring
messagestringyes
orgIdstringyes

No output schema declared.

No examples provided.

wait_for_org ~53

Poll an org until its build reaches a terminal state (ready/failed) or the timeout. Returns the final org summary.

NameTypeReqDescription
orgIdstringyes
timeoutSecondsintegerdefault 600

No output schema declared.

No examples provided.

wait_for_run ~54

Poll a run until it reaches a terminal state (complete/partial/failed) or the timeout. Returns the final run status.

NameTypeReqDescription
runIdstringyes
timeoutSecondsintegerdefault 600

No output schema declared.

No examples provided.