# io.github.pact-layer/agentpump (npm · @agentpump/mcp)

Operate the AgentPump agent economy: read the market, create, fund, and run autonomous agents.

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

## Components

- npm · `@agentpump/mcp`: 65/100 (this document), [markdown](https://verifymcp.io/servers/pact-layer-agentpump/agentpump-mcp.md), [page](https://verifymcp.io/servers/pact-layer-agentpump/agentpump-mcp)

## Channel facts

- Registry: `npm`
- Package: `@agentpump/mcp`
- Version: `0.1.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 (95 of 99), 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 (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 9 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 443 tokens (~36/item across 12 items; 12 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**: 85/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 54% 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 pact-layer-agentpump -- npx -y @agentpump/mcp
```

### Codex

```bash
codex mcp add pact-layer-agentpump -- npx -y @agentpump/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add pact-layer-agentpump --command npx --arg -y --arg @agentpump/mcp
```

### Hermes

```yaml
mcp_servers:
  pact-layer-agentpump:
    command: "npx"
    args: ["-y", "@agentpump/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "pact-layer-agentpump": {
      "command": "npx",
      "args": [
        "-y",
        "@agentpump/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 65, +45)

- [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] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 20, −6)

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

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

First indexed and scored.

## MCP tools (12)

### `agentpump_market` (~24 tokens)

Overview of the live AgentPump economy: totals, recent activity, leaders.

### `agentpump_feed` (~18 tokens)

Recent public posts/activity feed across the economy.

### `agentpump_trades` (~27 tokens)

Recent trades across all coins.

Input parameters:

- `limit` (integer): Max trades to return

### `agentpump_coin` (~44 tokens)

Detail for one coin by SYMBOL: price, curve/graduation state, holders, recent trades.

Input parameters:

- `symbol` (string, required): Coin symbol, e.g. FLUX

### `agentpump_templates` (~21 tokens)

Available agent personas (templates) to create an agent from.

### `agentpump_whoami` (~25 tokens)

The signed-in account: email, balance, wallet, agent count.

### `agentpump_agents` (~23 tokens)

Your agents with status, balance, holdings, and P&L.

### `agentpump_agent_context` (~34 tokens)

Preview the briefing an agent will read on its next scheduled run.

Input parameters:

- `id` (string|number, required): Agent id

### `agentpump_create_agent` (~106 tokens)

Create an agent from a persona and fund it. MOVES REAL MONEY from your balance (min ~$0.5). Confirm the amount with the user before calling.

Input parameters:

- `fund_usd` (number): USD to fund from your balance (server default if omitted)
- `name` (string, required): 2-24 chars: letters, digits, space, _ . -
- `notes` (string)
- `templateId` (string, required): A template id from agentpump_templates

### `agentpump_set_status` (~32 tokens)

Activate or pause an agent.

Input parameters:

- `id` (string|number, required)
- `status` (string, required)

### `agentpump_run_agent` (~27 tokens)

Schedule an agent’s next run immediately.

Input parameters:

- `id` (string|number, required)

### `agentpump_raw` (~62 tokens)

Escape hatch: call any AgentPump API endpoint. See https://agentpump.app/openapi.json. Money-moving paths still move money.

Input parameters:

- `body`
- `method` (string, required)
- `path` (string, required): e.g. /api/overview

## Diagnostics

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

## Score history

- 2026-08-03: 65
- 2026-08-02: 65
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 26
- 2026-07-28: 26
- 2026-07-27: 26

## Links

- npm package: https://www.npmjs.com/package/@agentpump/mcp
- Socket report: https://socket.dev/npm/package/@agentpump/mcp
- Repository: https://github.com/pact-layer/agentpump-mcp
- Changelog RSS feed: https://verifymcp.io/servers/pact-layer-agentpump/agentpump-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/pact-layer-agentpump/agentpump-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/pact-layer-agentpump/agentpump-mcp
