Skip to content

gopher-mcp-rust v0.1.2.11

Latest

Choose a tag to compare

@github-actions github-actions released this 21 Mar 16:31
· 0 commits to main since this release

gopher-mcp-rust v0.1.2.11

Rust SDK for gopher-orch orchestration framework.

Installation

From crates.io

# Add to Cargo.toml
[dependencies]
gopher-mcp-rust = "0.1.2.11"

Or via cargo:

cargo add gopher-mcp-rust@0.1.2.11

From GitHub

[dependencies]
gopher-mcp-rust = { git = "https://github.com/GopherSecurity/gopher-mcp-rust.git", tag = "v0.1.2.11" }

Native Library Installation

# macOS (Apple Silicon)
gh release download v0.1.2.11 -R GopherSecurity/gopher-mcp-rust -p "libgopher-orch-macos-arm64.tar.gz"
tar -xzf libgopher-orch-macos-arm64.tar.gz -C ./native

# macOS (Intel)
gh release download v0.1.2.11 -R GopherSecurity/gopher-mcp-rust -p "libgopher-orch-macos-x64.tar.gz"
tar -xzf libgopher-orch-macos-x64.tar.gz -C ./native

# Linux (x64)
gh release download v0.1.2.11 -R GopherSecurity/gopher-mcp-rust -p "libgopher-orch-linux-x64.tar.gz"
tar -xzf libgopher-orch-linux-x64.tar.gz -C ./native

# Linux (arm64)
gh release download v0.1.2.11 -R GopherSecurity/gopher-mcp-rust -p "libgopher-orch-linux-arm64.tar.gz"
tar -xzf libgopher-orch-linux-arm64.tar.gz -C ./native

Environment Setup

# macOS
export DYLD_LIBRARY_PATH="./native/lib:$DYLD_LIBRARY_PATH"

# Linux
export LD_LIBRARY_PATH="./native/lib:$LD_LIBRARY_PATH"

Build Information

  • Version: 0.1.2.11
  • gopher-orch: v0.1.2.11
  • Commit: f3b47a8
  • Date: 2026-03-21 16:31:34 UTC

What's Changed

Full Changelog: v0.1.2.10...v0.1.2.11