home / mcp / mina archive mcp server

Mina Archive MCP Server

Provides access to Mina blockchain data via MCP, exposing events, actions, and network state to MCP clients.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "boray-mcp-mina-archive-node": {
      "command": "npx",
      "args": [
        "mcp-mina-archive-node"
      ]
    }
  }
}

You can access Mina blockchain data through a dedicated MCP server that exposes events, actions, and network state information via a standardized interface. This makes it easy for AI applications to query Mina data efficiently and securely.

How to use

Use an MCP client to connect to the Mina Archive MCP Server. You can query events and actions with optional filters to narrow results, and you can fetch the current network state to understand the Mina network you are interacting with. Start by provisioning the server in your MCP client configuration, then call the available endpoints to retrieve the data you need. The server is designed to be straightforward to query: you specify the type of data you want (events, actions, or network state) and apply any filters supported by your client.

How to install

Prerequisites you need before installation: Node.js and npm (or a compatible runtime if you are using a different deployment approach). Ensure you have internet access to install dependencies.

npx -y @smithery/cli install mcp-mina-archive-node --client claude

# Alternatively, install manually by configuring the MCP server in your client setup:
```
{
  "mcpServers": {
    "mcp-graphql": {
      "command": "npx",
      "args": ["mcp-mina-archive-node"]
    }
  }
}

Additional notes

The server adheres to the MIT license, so you are free to use, modify, and distribute it under the terms of that license.

Available tools

query-events

Query events with optional filters to narrow results.

query-actions

Query actions with optional filters to refine results.

get-network-state

Get the current state of the Mina network.