npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

mina-mcp-server

v0.0.12

Published

A Mina blockchain MCP server for interfacing with LLMs

Readme

Mina MCP Server

A Model Context Protocol (MCP) server that provides zkApp transaction information from the Mina blockchain.

Overview

This MCP server provides AI models with the ability to query and retrieve information about zkApp transactions on the Mina blockchain. It uses the Blockberry API to fetch transaction data and formats it for easy consumption.

The server implements the Model Context Protocol (MCP), which allows AI models like Claude to access external tools and data sources. When connected to an MCP-compatible client like Claude Desktop, this server enables the AI to provide real-time information about zkApp transactions on the Mina blockchain.

Features

  • Query specific zkApp transactions by transaction hash
  • Fetch recent zkApp transactions with pagination support
  • Filter transactions by account ID
  • Detailed transaction formatting including:
    • Transaction status and block height
    • Fee payer/prover information
    • Updated accounts and their state changes
    • Security warnings for potentially suspicious transactions
    • Balance changes and timestamp information

Demo

Prerequisites

  • A Blockberry API key (sign up at Blockberry)
  • Claude Desktop or another MCP-compatible client

Usage

Using with Claude Desktop

To use the Mina MCP server with Claude Desktop (Anthropic's desktop app for Claude), follow these steps:

  1. Download and Install Claude Desktop:

    • macOS/Windows: Visit the official Claude Desktop downloads page and get the app for your operating system. Install the app and ensure you're using the latest version (you can check for updates in the app menu).
    • Linux: While Anthropic doesn't officially support Linux yet, you can use the community-maintained version available at https://github.com/aaddrick/claude-desktop-debian.
  2. Configure Claude Desktop to use the Mina MCP Server: Open the Claude Desktop configuration file (it's created when you first edit settings in Claude Desktop):

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Linux: This will depend on the installation method, but is likely in ~/.config/Claude/claude_desktop_config.json

    Add an entry for the Mina MCP server in this JSON config under the "mcpServers" section:

    {
      "mcpServers": {
        "mina-mcp": {
          "command": "bash",
          "args": [
             "-c", "BLOCKBERRY_API_KEY=your_api_key npx mina-mcp-server"
             ]         
        }
      }
    }

    In this configuration:

    • "mina-mcp" is an identifier for the server
    • The command is set to run the bash command
    • args tells npx to run the latest version of the mina-mcp package while setting the blockberry api key as an env variable

Available Tools

get-zkapp-transaction

Get detailed information about a specific zkApp transaction by its hash.

Parameters:

  • txHash (string): The transaction hash to lookup

Example:

{
  "name": "get-zkapp-transaction",
  "parameters": {
    "txHash": "5JtRyvAiXf7mXB5JsWuUVYsBYPDPwP55JCAPR2cDG8yRb1Pc3q8T"
  }
}

get-recent-zkapp-transactions

Fetches a list of recent zkApp transactions with pagination support.

Parameters:

  • page (number, default: 0): Page number (starts at 0)
  • size (number, default: 20): Number of transactions per page (max: 50)
  • accountId (string, optional): Filter by account ID
  • orderBy (enum: "ASC" or "DESC", default: "DESC"): Sorting direction
  • sortBy (string, default: "AGE"): Sorting parameter

Example:

{
  "name": "get-recent-zkapp-transactions",
  "parameters": {
    "page": 0,
    "size": 10,
    "orderBy": "DESC",
    "sortBy": "AGE"
  }
}

Credits