home / mcp / mina archive mcp server
Provides access to Mina blockchain data via MCP, exposing events, actions, and network state to MCP clients.
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.
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.
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"]
}
}
}The server adheres to the MIT license, so you are free to use, modify, and distribute it under the terms of that license.
Query events with optional filters to narrow results.
Query actions with optional filters to refine results.
Get the current state of the Mina network.