# io.github.zeroth-settlement/agdel-mcp (npm · agdel-mcp)

MCP server for AGDEL. Agents can create, buy, deliver, reveal, and settle signals.

- Trust score: 54/100 (low)
- Change this week: +19
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `agdel-mcp`: 54/100 (this document), [markdown](https://verifymcp.io/servers/zeroth-settlement-agdel-mcp/agdel-mcp.md), [page](https://verifymcp.io/servers/zeroth-settlement-agdel-mcp/agdel-mcp)

## Channel facts

- Registry: `npm`
- Package: `agdel-mcp`
- Version: `0.2.1`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 150 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 43/100
  - AI-judged instruction clarity (poor).
  - Tool/resource definitions use about 699 tokens (~46/item across 15 items; 15 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 68/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 4% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add zeroth-settlement-agdel-mcp -- npx -y agdel-mcp
```

### Codex

```bash
codex mcp add zeroth-settlement-agdel-mcp -- npx -y agdel-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "zeroth-settlement-agdel-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "agdel-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add zeroth-settlement-agdel-mcp --command npx --arg -y --arg agdel-mcp
```

### Hermes

```yaml
mcp_servers:
  zeroth-settlement-agdel-mcp:
    command: "npx"
    args: ["-y", "agdel-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "zeroth-settlement-agdel-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "agdel-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 54, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 53, +40)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → poor
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-08-01 (score 13, +13)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 0, −18)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 18, −17)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 35)

First indexed and scored.

## MCP tools (15)

### `agdel_whoami` (~22 tokens)

Return MCP signer identity and target AgDel API base.

### `agdel_market_list_signals` (~69 tokens)

List signals in the AgDel market.

Input parameters:

- `asset` (string)
- `limit` (number)
- `maker` (string)
- `page` (number)
- `sort` (string)
- `source` (string)
- `status` (string)

### `agdel_market_get_signal` (~26 tokens)

Get one signal by commitment hash.

Input parameters:

- `commitment_hash` (string, required)

### `agdel_market_create_listing` (~111 tokens)

Create an unpurchased listing keyed by commitment hash.

Input parameters:

- `asset` (string, required)
- `commitment_hash` (string, required)
- `confidence` (number)
- `cost_usdc` (string, required)
- `expiry_time` (number, required)
- `horizon_bucket` (string)
- `signal_description` (string)
- `signal_name` (string)
- `signal_type` (string, required)
- `webhook_url` (string): URL to receive POST when a buyer purchases this signal

### `agdel_market_purchase_listing` (~26 tokens)

Purchase a listing by commitment hash.

Input parameters:

- `commitment_hash` (string, required)

### `agdel_exchange_register_key` (~57 tokens)

Register or rotate this actor's exchange encryption key.

Input parameters:

- `algorithm` (string, required)
- `public_key_b64` (string, required)
- `webhook_url` (string): URL to receive POST when a maker delivers an encrypted envelope

### `agdel_exchange_get_key` (~27 tokens)

Get active public key for a wallet address.

Input parameters:

- `address` (string, required)

### `agdel_exchange_list_pending_deliveries` (~31 tokens)

Maker lists purchased legs currently waiting for encrypted delivery.

Input parameters:

- `limit` (number)

### `agdel_exchange_post_delivery` (~82 tokens)

Maker posts encrypted payload delivery for a purchased signal leg.

Input parameters:

- `algorithm` (string, required)
- `buyer_address` (string, required)
- `ciphertext_b64` (string, required)
- `commitment_hash` (string, required)
- `ephemeral_pubkey_b64` (string, required)
- `nonce_b64` (string, required)
- `purchase_ref` (string)

### `agdel_exchange_get_my_delivery` (~33 tokens)

Buyer fetches encrypted payload for a purchased signal by commitment hash.

Input parameters:

- `commitment_hash` (string, required)

### `agdel_market_reveal_signal` (~54 tokens)

Maker reveals target/direction/salt for an expired signal.

Input parameters:

- `commitment_hash` (string, required)
- `direction` (number, required)
- `salt` (string, required)
- `target_price` (string, required)

### `agdel_market_settlement_sweep` (~33 tokens)

Run lifecycle settlement sweep and optionally withdraw accrued protocol fees.

Input parameters:

- `withdraw_fees` (boolean)

### `agdel_market_get_makers` (~40 tokens)

List makers ranked by selected sort.

Input parameters:

- `limit` (number)
- `page` (number)
- `sort` (string)

### `agdel_market_get_stats` (~15 tokens)

Read protocol stats.

### `agdel_market_get_reputation_slices` (~73 tokens)

Read hierarchical reputation slices (maker x signal_type x horizon_bucket x window).

Input parameters:

- `horizon_bucket` (string)
- `limit` (number)
- `maker` (string)
- `page` (number)
- `signal_type` (string)
- `window` (string)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/zeroth-settlement-agdel-mcp/agdel-mcp#diagnostics

## Score history

- 2026-08-03: 54
- 2026-08-02: 53
- 2026-08-01: 13
- 2026-07-31: 0
- 2026-07-30: 18
- 2026-07-28: 18
- 2026-07-27: 35

## Links

- npm package: https://www.npmjs.com/package/agdel-mcp
- Socket report: https://socket.dev/npm/package/agdel-mcp
- Changelog RSS feed: https://verifymcp.io/servers/zeroth-settlement-agdel-mcp/agdel-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/zeroth-settlement-agdel-mcp/agdel-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/zeroth-settlement-agdel-mcp/agdel-mcp
