
Metaplex MCP Server

2025.02.17
0
TypeScript文档搜索代码搜索开发效率
Metaplex MCP Server 是一个基于 Model Context Protocol (MCP) 的服务,主要用于访问 Metaplex 的文档和仓库信息。它提供了搜索 Metaplex 文档、获取 Metaplex 仓库详情以及跨仓库搜索代码的功能。
View on GitHub
Overview
基本能力
产品定位
Metaplex MCP Server 是一个专门为 Metaplex 生态系统设计的文档和代码搜索服务,旨在提高开发者在 Metaplex 生态系统中的开发效率。
核心功能
- 搜索 Metaplex 文档
- 获取 metaplex-foundation 仓库的详细信息
- 跨 Metaplex 仓库搜索代码
适用场景
- 开发者需要快速查找 Metaplex 相关文档
- 开发者需要了解 Metaplex 仓库的详细信息
- 开发者需要在多个 Metaplex 仓库中搜索特定代码
工具列表
node
: 用于运行服务器npm
: 用于安装依赖和构建项目git
: 用于克隆仓库jq
: 用于处理 JSON 配置文件
常见问题解答
无明确常见问题解答部分
使用教程
使用依赖
- Node.js
- npm
- git
- jq
安装教程
# Install and configure 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 &
调试方式
# Install dependencies
npm install
# Build and run
npm run build && node build/index.js