mcp-server-rs-exploration

mcp-server-rs-explorationはRustで開発されたプロジェクトで、MCP(Minecraft Protocol)に関連するサーバーの探索を目的としています。Rustの特性を活かし、高速かつ安全なサーバー機能の実装を目指していますが、現在は初期段階にあり、機能は限られています。

GitHubスター

0

ユーザー評価

未評価

お気に入り

0

閲覧数

16

フォーク

0

イシュー

0

README
MCP Server Exploration

This project is an exploration of the latest MCP specification revision:

Building the Server

To build servers binary:

./build.sh
Integrating with Claude Desktop

To use this server with Claude Desktop, add the executable path to your Claude
Desktop configuration:

{
    "mcpServers": {
        "rust_math_server": {
            "command": "$PATH/TO/mcp-server-rs-exploration/bin/stdio",
                "args": []
        }
    }
}

Replace $PATH/TO with the actual path to your local clone of this project.