# io.github.MinaProtocol/mina-mcp-server (npm · @o1-labs/mina-mcp-server)

Query Mina Protocol: accounts, blocks, transactions, zkApp events/actions, archive SQL, Rosetta.

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

## Components

- npm · `@o1-labs/mina-mcp-server`: 79/100 (this document), [markdown](https://verifymcp.io/servers/minaprotocol-mina-mcp-server/o1-labs-mina-mcp-server.md), [page](https://verifymcp.io/servers/minaprotocol-mina-mcp-server/o1-labs-mina-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@o1-labs/mina-mcp-server`
- Version: `0.7.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**: 88/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (142 of 144), 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 (142 of 144), 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 MinaProtocol/mina-mcp-server).
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 63 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 407 tokens (~81/item across 5 items; 5 tools + 0 resources), lean.
  - 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add minaprotocol-mina-mcp-server -- npx -y @o1-labs/mina-mcp-server
```

### Codex

```bash
codex mcp add minaprotocol-mina-mcp-server -- npx -y @o1-labs/mina-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "minaprotocol-mina-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@o1-labs/mina-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add minaprotocol-mina-mcp-server --command npx --arg -y --arg @o1-labs/mina-mcp-server
```

### Hermes

```yaml
mcp_servers:
  minaprotocol-mina-mcp-server:
    command: "npx"
    args: ["-y", "@o1-labs/mina-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "minaprotocol-mina-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@o1-labs/mina-mcp-server"
      ]
    }
  }
}
```

## 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 79, +1)

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

### 2026-08-02 (score 78, +57)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] The attested source repository moved: MinaProtocol/mina-mcp-server
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [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 → good
- [functional improvement] License: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: Apache-2.0

### 2026-07-31 (score 21, −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 46)

First indexed and scored.

## MCP tools (5)

### `get_sync_status` (~90 tokens)

[infra] Get the sync status and daemon info. Returns the flat daemon status object directly — fields like `syncStatus`, `blockchainLength`, `stateHash`, `numAccounts`, `chainId`, `addrsAndPorts` are at the top level (not nested under `daemonStatus`). In snapshot mode returns archive DB stats instead. In tutorial and live modes returns the live daemon status.

### `query_archive_sql` (~158 tokens)

[infra][tutorial+snapshot] Execute a read-only SQL query against the archive database. Only SELECT/WITH/EXPLAIN statements are allowed. Query timeout is 10 seconds. Not available in live mode (no archive DB). Common tables: `blocks`, `user_commands`, `internal_commands`, `public_keys`, `accounts_accessed`. Call `get_archive_schema` first if you don't know the table layout.

Input parameters:

- `params` (array): Parameterized values: $1, $2, ... in the SQL
- `sql` (string, required): Read-only SQL (SELECT / WITH / EXPLAIN only). Example: SELECT state_hash, height FROM blocks WHERE chain_status = 'canonical' ORDER BY height DESC LIMIT 10

### `get_archive_schema` (~33 tokens)

[infra] Get the archive database table names and their columns. Useful for understanding what data is available for SQL queries.

### `list_examples` (~71 tokens)

[infra] List curated example workflows (each is a sequence of tool calls). Filter by the current server mode by default; pass `all` to see every workflow regardless of mode.

Input parameters:

- `include` (string): 'current' filters to workflows runnable in this server's mode; 'all' shows every workflow.

### `get_example` (~55 tokens)

[infra] Get the full step list for a single named example workflow. Use list_examples first to discover names.

Input parameters:

- `name` (string, required): Example name from list_examples (e.g. 'send_payment', 'verify_in_archive').

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/minaprotocol-mina-mcp-server/o1-labs-mina-mcp-server#diagnostics

## Score history

- 2026-08-03: 79
- 2026-08-02: 78
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@o1-labs/mina-mcp-server
- Socket report: https://socket.dev/npm/package/@o1-labs/mina-mcp-server
- Repository: https://github.com/MinaProtocol/mina-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/minaprotocol-mina-mcp-server/o1-labs-mina-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/minaprotocol-mina-mcp-server/o1-labs-mina-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/minaprotocol-mina-mcp-server/o1-labs-mina-mcp-server
