# AntFeed (npm · @antfeed/mcp)

Discover and transact on the AntSeed P2P AI network from any MCP-compatible agent.

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

## Components

- npm · `@antfeed/mcp`: 77/100 (this document), [markdown](https://verifymcp.io/servers/augustas11-antfeed-mcp/antfeed-mcp.md), [page](https://verifymcp.io/servers/augustas11-antfeed-mcp/antfeed-mcp)

## Channel facts

- Registry: `npm`
- Package: `@antfeed/mcp`
- Version: `0.2.3`
- 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**: 83/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known medium-severity CVE affects @hono/node-server 1.19.17, reached via @modelcontextprotocol/sdk > @hono/node-server. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to Augustas11/antseed-explorer).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 70 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1212 tokens (~151/item across 8 items; 8 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add augustas11-antfeed-mcp -- npx -y @antfeed/mcp
```

### Codex

```bash
codex mcp add augustas11-antfeed-mcp -- npx -y @antfeed/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add augustas11-antfeed-mcp --command npx --arg -y --arg @antfeed/mcp
```

### Hermes

```yaml
mcp_servers:
  augustas11-antfeed-mcp:
    command: "npx"
    args: ["-y", "@antfeed/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "augustas11-antfeed-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@antfeed/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-02 (score 77, +57)

- [security regression] GHSA-frvp-7c67-39w9 affects this package: medium
- [security regression] Known CVEs: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security] The attested source repository moved: Augustas11/antseed-explorer
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

### 2026-08-01 (score 20, +1)

- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-31 (score 19, −25)

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

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

First indexed and scored.

## MCP tools (8)

### `lookup` (~137 tokens)

Substring-search the AntFeed provider directory by address, displayName, or service name (case-insensitive). Use for fuzzy discovery; use list_providers to browse, get_pricing for a single price. Returns matched providers with the same shape as list_providers, plus an opaque nextCursor for more matches.

Input parameters:

- `cursor` (string): Opaque pagination token returned by a previous call. Omit for the first page.
- `limit` (integer): Max matches per page (default 50, max 200).
- `query` (string, required): Substring matched (case-insensitive) against address, displayName, or any service name

Output parameters:

- `explorerTotal` (integer): Total providers in the directory
- `matched` (integer): Matches returned on this page
- `matches` (array)
- `nextCursor` (string): Pass back as `cursor` to fetch the next page of matches.
- `note` (string)
- `query` (string)
- `searchedOver` (integer): Providers scanned (top-by-volume window)
- `totalMatched` (integer): Total matches across all pages of the searched window
- `truncated` (boolean): True when explorerTotal exceeds the scanned window

### `list_providers` (~144 tokens)

Browse the AntFeed provider directory page by page. Use to discover sellers; use lookup for substring search, get_pricing for a single (peerId, service) lookup. sort: score (USDC earned, default) | recent (last refresh). Returns up to limit providers per page, plus an opaque nextCursor for the next page.

Input parameters:

- `cursor` (string): Opaque pagination token returned by a previous call. Omit for the first page.
- `limit` (integer): Max providers per page (default 50, max 200).
- `sort` (string): score = total USDC earned; recent = newest in directory (by last-refresh timestamp).

Output parameters:

- `nextCursor` (string): Pass back as `cursor` to fetch the next page. Absent when no more results.
- `providers` (array)
- `sort` (string)
- `total` (integer): Total providers across all pages

### `get_pricing` (~126 tokens)

Look up a single seller's advertised price for one service. Use for point lookups (peerId + service); use list_providers to browse. Returns input/output USDC per million tokens with status INDEXED | PROVIDER_NOT_INDEXED | SERVICE_NOT_OFFERED | PRICE_NOT_PUBLISHED. Refreshed hourly from network.antseed.com.

Input parameters:

- `peerId` (string, required): Seller's on-chain address (0x + 40 hex chars)
- `service` (string, required): Service identifier (e.g. 'gpt-5.4', 'code-auditor')

Output parameters:

- `availableServices` (array): Returned only on SERVICE_NOT_OFFERED
- `currency` (string)
- `displayName` (string|null)
- `inputUsdPerMillion` (number|null)
- `lastUpdated` (string|null): ISO timestamp of directory refresh
- `message` (string): Human-readable explanation of the status
- `outputUsdPerMillion` (number|null)
- `peerId` (string)
- `region` (string|null)
- `service` (string)
- `status` (string)

### `get_session_status` (~110 tokens)

Look up the on-chain status of one payment channel by channel_id. Use for 'is my session settled yet?' checks; use create_session to open one. Returns {sessionId, buyer, seller, status, channelBalance, settledAmountUsdc, settled, openedAt, closedAt}. v1 paginates /api/channels client-side because there is no per-channel endpoint yet.

Input parameters:

- `sessionId` (string, required): Channel ID (bytes32 hex, e.g. 0xabc...)

Output parameters:

- `buyer` (string|null)
- `channelBalance` (number|null): Max deposit, USDC
- `closedAt` (string|null): ISO timestamp; only when settled
- `eventCount` (integer)
- `openedAt` (string|null): ISO timestamp
- `seller` (string|null)
- `sessionId` (string)
- `settled` (boolean)
- `settledAmountUsdc` (number|null)
- `status` (string): Channel state (e.g. 'Open', 'Settled')
- `totalDeltaUsdc` (number|null)

### `network_stats` (~98 tokens)

Get a one-shot point-in-time snapshot of antfeed: settled revenue, today's DAU, indexer→profile drift, and Base gas price. Use this for 'state of the network right now' questions; use dau_trend for growth over time. Parallel fetches /api/stats, /api/gas, and /api/metrics/dau; any individual upstream failure degrades that field to null and is listed in partialFailures.

Output parameters:

- `asOf` (string): ISO timestamp when the snapshot was assembled
- `dau` (integer|null): Daily active users for today's UTC bucket. null when /api/metrics/dau failed or returned no rows.
- `drift` (number|null): USDC drift between raw events and aggregated profiles. 0 = in sync; null when /api/stats failed.
- `gasGwei` (number|null): Current Base estimated fee in gwei. null when fee estimation failed or /api/gas was unreachable.
- `partialFailures` (array): List of upstream endpoints that failed for this snapshot. Empty when all three succeeded.
- `revenueUsdc` (number|null): Total settled USDC across the network. null when /api/stats failed.

### `get_buyer` (~95 tokens)

Look up a single buyer by 0x address. Use when you have an address; for browsing the directory of sellers use list_providers. Returns trust score breakdown (volume/consistency/diversity/reliability), aggregate session stats, the last 20 recent settled sessions, and the buyer's top sellers by spend.

Input parameters:

- `address` (string, required): Buyer's on-chain address (0x + 40 hex chars)

Output parameters:

- `address` (string)
- `qualified` (boolean): True when the buyer meets the network's Qualified threshold (≥3 unique sellers).
- `recentSessions` (array)
- `sessions` (object)
- `topSellers` (array)
- `trustScore` (object)

### `dau_trend` (~136 tokens)

Get the daily active users series between two dates (UTC days). Use for growth/trend questions; use network_stats for today's single value. Returns per-day total DAU plus buyer/seller breakdown and new-user count. Default window: last 30 days. granularity: day (only value supported today).

Input parameters:

- `from` (string): ISO date YYYY-MM-DD (UTC). Default: today − 30 days.
- `granularity` (string): Bucket size. Only 'day' is supported today; param is reserved for future expansion.
- `to` (string): ISO date YYYY-MM-DD (UTC). Default: today.

Output parameters:

- `from` (string)
- `granularity` (string)
- `series` (array)
- `to` (string)

### `buyer_setup` (~70 tokens)

Diagnose missing local AntSeed buyer — registered instead of create_session when no buyer responded to /health at startup. Use this to tell the user how to install a buyer (CLI or AntStation Desktop). Returns the probed buyer URL and install instructions. For trading, install a buyer and restart the MCP server.

Output parameters:

- `message` (string)
- `nextSteps` (string)
- `options` (array)
- `probedAt` (string): URL the MCP probed for /health
- `status` (string)
- `strictMode` (boolean)

## Diagnostics

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

## Score history

- 2026-08-03: 77
- 2026-08-02: 77
- 2026-08-01: 20
- 2026-07-31: 19
- 2026-07-30: 44
- 2026-07-28: 44
- 2026-07-27: 44

## Links

- npm package: https://www.npmjs.com/package/@antfeed/mcp
- Socket report: https://socket.dev/npm/package/@antfeed/mcp
- Repository: https://github.com/Augustas11/antseed-explorer
- Website: https://antfeed.org/mcp
- Changelog RSS feed: https://verifymcp.io/servers/augustas11-antfeed-mcp/antfeed-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/augustas11-antfeed-mcp/antfeed-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/augustas11-antfeed-mcp/antfeed-mcp
