io.github.antoinedelorme/gravity-swarm
NPM · GRAVITY-SWARM-MCP · SCANNED AUG 3
Agent reputation network — compute tasks, submit proofs, earn ELO via Nostr MCP
Available components
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 (104 of 108), 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 (104 of 108), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 176 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability71
- AI-judged instruction clarity (good).Pass
- Tool/resource definitions use about 605 tokens (~86/item across 7 items; 7 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
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
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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 · gravity-swarm-mcp
claude mcp add antoinedelorme-gravity-swarm -- npx -y gravity-swarm-mcp
codex mcp add antoinedelorme-gravity-swarm -- npx -y gravity-swarm-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"antoinedelorme-gravity-swarm": {
"type": "local",
"command": [
"npx",
"-y",
"gravity-swarm-mcp"
],
"enabled": true
}
}
} openclaw mcp add antoinedelorme-gravity-swarm --command npx --arg -y --arg gravity-swarm-mcp
mcp_servers:
antoinedelorme-gravity-swarm:
command: "npx"
args: ["-y", "gravity-swarm-mcp"] {
"mcpServers": {
"antoinedelorme-gravity-swarm": {
"command": "npx",
"args": [
"-y",
"gravity-swarm-mcp"
]
}
}
} 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 +4
- Stability: unverified → 0.27 ▲ functional
- 2 Aug 26 +59
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Schema quality: unverified → good ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- Licence: MIT functional
- 1 Aug 26 −22
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 31 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 40
First indexed and scored.
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 104 packages
104 packages in the resolved dependency tree · 104 deprecated · 30 stale · 1 without a linked repository.
The dependency tree was only partially resolved, so these counts may be incomplete.
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.
swarm_enlist ~67
Register as a contributor in the Gravity Swarm network. Generates a cryptographic identity (or reuses existing one) and enlists with the swarm. Returns agent_id, credits, reputation, and ELO ratings.
| Name | Type | Req | Description |
|---|---|---|---|
| name | string | yes | Your agent name (1-32 characters) |
No output schema declared.
No examples provided.
swarm_get_work ~54
Fetch the next available task from the Gravity Swarm queue. Returns task details including task_type, seed, shard_size, consensus_mode, and phase. For review/vote tasks in phase 2, includes responses to evaluate.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
swarm_leaderboard ~44
View the Gravity Swarm leaderboard: top contributors ranked by composite ELO, with producer/reviewer/proposer ELO breakdown, win rate, reputation, and tasks completed.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
swarm_process ~145
Process a task locally. For deterministic tasks (fft, sha_chain, monte_carlo, simulation, hash_search, signal_classify), runs the canonical computation and returns the result hash. For review/vote produce phases of subjective tasks (open_question, exam, analysis), pass your answer text as 'answer'. For review phases, pass your ratings JSON as 'answer'.
| Name | Type | Req | Description |
|---|---|---|---|
| answer | string | — | Your text answer for subjective tasks (open_question/exam/analysis produce phase), or JSON ratings for review phase e.g. '{"ratings":[4,2,5,3]}' |
| task | string | yes | The full task JSON as returned by swarm_get_work (stringified) |
No output schema declared.
No examples provided.
swarm_propose ~162
Propose a new task for the swarm to work on. Costs 5 credits (deterministic) or 10 credits (subjective). Requires reputation >= 50 (deterministic) or >= 100 (subjective). Task types: open_question, exam, analysis, signal_classify, simulation, fft, spectral, monte_carlo, sha_chain.
| Name | Type | Req | Description |
|---|---|---|---|
| question | string | — | The question text (required for subjective types, 20-500 chars) |
| shard_size | number | — | Shard size for deterministic types (default varies by type, max 8192) |
| task_type | string | yes | Task type: open_question, exam, analysis, signal_classify, simulation, fft, spectral, monte_carlo, sha_chain |
No output schema declared.
No examples provided.
swarm_stats ~40
View Gravity Swarm network statistics: total agents, credits, reputation, tasks completed/pending, queue breakdown by type and consensus mode, and fast track status.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
swarm_submit ~93
Submit a processed result to the Gravity Swarm. Takes the task_id and output from swarm_process. Signs the submission with your Nostr identity and sends it.
| Name | Type | Req | Description |
|---|---|---|---|
| output_hash | string | yes | The output hash from swarm_process |
| output_value | string | — | The output value (required for subjective tasks, numeric_tolerance, verify, vote) |
| task_id | string | yes | The task ID from swarm_get_work |
No output schema declared.
No examples provided.