https://github.com/aldrin-labs/metaplex-mcp-server
https://github.com/aldrin-labs/metaplex-mcp-server
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aldrin-labs/metaplex-mcp-server
- Owner: aldrin-labs
- License: unlicense
- Created: 2025-01-04T05:47:11.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-09T07:35:15.000Z (5 months ago)
- Last Synced: 2025-01-09T08:44:09.492Z (5 months ago)
- Language: TypeScript
- Size: 68.4 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- mcp-index - Metaplex Server - Access Metaplex documentation, retrieve repository details from the metaplex-foundation, and search code across Metaplex repositories. (Developer Tools)
README
# Metaplex MCP Server
A Model Context Protocol (MCP) server for accessing Metaplex documentation and repository information.
## Features
- Search Metaplex documentation
- Get repository details from metaplex-foundation
- Search code across Metaplex repositories## Usage
The server runs as an MCP server and can be accessed through the MCP protocol.
## Installation
```bash
# 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 &
```## Development
```bash
# Install dependencies
npm install# Build and run
npm run build && node build/index.js
```## License
This project is released under The Unlicense. See [LICENSE](LICENSE) for details.