MCP.so
登录

MCP Server

@zaki9501

关于 MCP Server

暂无概览

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

zaki9501

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

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

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

其他 分类下的更多 MCP 服务器