MCP.so
Sign In

MCP Server

@zaki9501

About MCP Server

No overview available yet

Basic information

Category

Other

Runtime

node

Transports

stdio

Publisher

zaki9501

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "pikimon-mcp-server": {
      "command": "docker",
      "args": [
        "build",
        "-t",
        "mcp-server",
        "."
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is MCP Server?

A Node.js server that provides a REST API for interacting with the Monad Testnet blockchain. It wraps Web3.js for common blockchain operations and is targeted at developers building on or monitoring the Monad Testnet.

How to use MCP Server?

Clone the repository, install dependencies with npm install, copy .env.example to .env, and set the required MONAD_RPC_URL. Start the development server with npm run dev or production with npm start. Alternatively, build and run the Docker container using the provided Dockerfile.

Key features of MCP Server?

  • Express.js REST API with security middleware (helmet, cors)
  • Web3.js integration for blockchain operations
  • Endpoints for balance, blocks, transactions, and data storage
  • Built-in Swagger API documentation at /api-docs
  • Docker support for containerized deployment
  • Environment variable configuration

Use cases of MCP Server

  • Monitor the latest blocks and analyze individual blocks on Monad Testnet
  • Store and retrieve data from a smart contract on the testnet
  • Execute a chain of blockchain operations in a single request
  • Perform parallel analysis of multiple blocks
  • Check server health and connectivity to the Monad node

FAQ from MCP Server

What are the prerequisites for running MCP Server?

Node.js v16+ with npm v8+ (or Docker) and access to a Monad Testnet node are required.

How do I configure the environment variables?

Set MONAD_RPC_URL to your Monad Testnet node URL. Optionally, configure PORT, CONTRACT_ADDRESS, CONTRACT_ABI, and LOG_LEVEL in your .env file.

How can I view the API documentation?

Start the server and navigate to http://localhost:3000/api-docs (or your configured host/port) to use the Swagger UI.

Can I run MCP Server using Docker?

Yes. Clone the repo, configure .env, build the image with docker build -t mcp-server ., then run with docker run using the --env-file flag.

Where are application logs stored?

Logs are written to the /app/logs directory inside the container. Mount a host volume to persist them outside the container.

Comments

More Other MCP servers