Metaplex MCP Server

Metaplex MCP Server

site icon
2025.04.16 1
TypeScript文档服务代码搜索开发效率
Metaplex MCP Server 是一个基于 Model Context Protocol (MCP) 的服务,主要用于访问 Metaplex 的文档和仓库信息。它提供了搜索 Metaplex 文档、获取 metaplex-foundation 仓库详情以及跨仓库代码搜索等功能。
View on GitHub

Overview

基本能力

产品定位

Metaplex MCP Server 是一个专门为 Metaplex 生态系统设计的文档和代码搜索服务。

核心功能

  • 搜索 Metaplex 文档
  • 获取 metaplex-foundation 仓库的详细信息
  • 跨 Metaplex 仓库搜索代码

适用场景

  • 开发者在 Metaplex 生态系统中查找文档
  • 需要快速获取 Metaplex 仓库信息
  • 在多个 Metaplex 仓库中搜索特定代码

工具列表

  • npm:用于安装依赖和构建项目
  • git:用于克隆仓库
  • jq:用于处理 JSON 配置文件

常见问题解答

文档中未提供常见问题解答部分。

使用教程

使用依赖

需要安装以下依赖: - Node.js - npm - git - jq

安装教程

# 安装并配置 Metaplex MCP Server
cd ~/Documents/Cline/MCP && \
git clone https://github.com/metaplex-foundation/metaplex-mcp-server.git && \
cd metaplex-mcp-server && \
npm install && \
npm run build && \
echo '{
  "metaplex": {
    "command": "node",
    "args": ["'$(pwd)'/build/index.js"],
    "env": {}
  }
}' | jq -s '.[0] * .[1]' ~/Library/Application\ Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json - > /tmp/cline_mcp_settings.json && \
mv /tmp/cline_mcp_settings.json ~/Library/Application\ Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json && \
nohup node build/index.js > /dev/null 2>&1 &

调试方式

# 安装依赖
npm install

# 构建并运行
npm run build && node build/index.js

许可证

该项目遵循 Unlicense 开源许可条款,请参阅 Unlicense 了解完整条款。