Hyper MCP服务器 是 AI Skill Hub 本期精选MCP工具之一。综合评分 8.2 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
基于Rust开发的高性能MCP服务器,通过WebAssembly扩展功能。支持安全的插件机制、快速执行和灵活集成,适合构建AI应用的开发者和LLM集成场景。
Hyper MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
基于Rust开发的高性能MCP服务器,通过WebAssembly扩展功能。支持安全的插件机制、快速执行和灵活集成,适合构建AI应用的开发者和LLM集成场景。
Hyper MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/hyper-mcp-rs/hyper-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"hyper-mcp---": {
"command": "npx",
"args": ["-y", "hyper-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Hyper MCP服务器 执行以下任务... Claude: [自动调用 Hyper MCP服务器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"hyper_mcp___": {
"command": "npx",
"args": ["-y", "hyper-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<a href="https://trendshift.io/repositories/13451" target="_blank"><img src="https://trendshift.io/api/badge/repositories/13451" alt="hyper-mcp-rs%2Fhyper-mcp | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
</div>
stdio transport protocolcosign — required for loading plugins from OCI registries (oci:// URLs).
hyper-mcp verifies the cryptographic signature of every OCI plugin before loading it to ensure the plugin has not been tampered with and comes from a trusted source. This verification is performed by shelling out to the cosign CLI, which must be installed and available on your PATH.
Install cosign by following the official instructions: <https://docs.sigstore.dev/cosign/system_config/installation/>
Note: If you only usefile://,http://,https://, ors3://plugin URLs, cosign is not needed. You can also bypass signature verification for OCI plugins by settinginsecure_skip_signature: truein your config or theHYPER_MCP_INSECURE_SKIP_SIGNATURE=trueenvironment variable, but this is not recommended for production use.
hyper-mcp is published on Homebrew for macOS and Linux in two places:
Homebrew core — no tap setup required:
brew install hyper-mcp
Our own tap (hyper-mcp-rs/tap) — bumped automatically on every GitHub Release, so it picks up new versions immediately:
brew install hyper-mcp-rs/tap/hyper-mcp
Both install the same binary. Prefer the core formula unless you want the absolute latest release the moment it ships.
If you have Rust installed, you can install hyper-mcp directly from crates.io:
cargo install hyper-mcp
1. Create your config file: - Linux: $HOME/.config/hyper-mcp/config.json - Windows: {FOLDERID_RoamingAppData}\hyper-mcp\config.json. Eg: C:\Users\Alice\AppData\Roaming\hyper-mcp\config.json - macOS: $HOME/Library/Application Support/hyper-mcp/config.json
{
"plugins": {
"time": {
"url": "oci://ghcr.io/hyper-mcp-rs/time-plugin:latest",
"description": "Get current time and do time calculations"
},
"qr_code": {
"url": "oci://ghcr.io/hyper-mcp-rs/qrcode-plugin:latest",
"description": "Generate QR codes from text"
},
"hash": {
"url": "oci://ghcr.io/hyper-mcp-rs/hash-plugin:latest"
},
"myip": {
"url": "oci://ghcr.io/hyper-mcp-rs/myip-plugin:latest",
"description": "Get your current public IP address",
"runtime_config": {
"allowed_hosts": ["1.1.1.1"]
}
},
"fetch": {
"url": "oci://ghcr.io/hyper-mcp-rs/fetch-plugin:latest",
"runtime_config": {
"allowed_hosts": ["*"],
"memory_limit": "100 MB",
}
}
}
}
📖 For detailed configuration options including authentication setup, runtime configuration, and advanced features, see RUNTIME_CONFIG.md
Supported URL schemes: - oci:// - for OCI-compliant registries (like Docker Hub, GitHub Container Registry, etc.). Requires cosign for signature verification (see Prerequisites) - file:// - for local files - http:// or https:// - for remote files - s3:// - for Amazon S3 objects (requires that you have your AWS credentials set up in the environment)
$ hyper-mcp
stdio transport protocol.RUST_LOG=debug.insecure_skip_signature flag or env var HYPER_MCP_INSECURE_SKIP_SIGNATURE to trueRunning in SSE/streamable-http: To do this, wraphyper-mcpin one of the many proxies that supports the network transports AND that creates an instance ofhyper-mcpper client connection.
We maintain several plugins to get you started:
These plugins use the v1 plugin interface. While still supported, new plugins should use the v2 interface.
These plugins use the v2 plugin interface. New plugins should use this interface.
For comprehensive instructions on creating plugins, see CREATING_PLUGINS.md.
For ready-to-use plugin templates in Rust and Go, see TEMPLATES.md.
RUST_LOG=debug hyper-mcp
高性能MCP服务器实现,Rust性能优势明显,WebAssembly扩展机制创新。社区活跃,代码质量可靠,是AI应用基础设施的优质选择。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,Hyper MCP服务器 在MCP工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | hyper-mcp |
| 原始描述 | 开源MCP工具:📦️ A fast, secure MCP server that extends its capabilities through WebAssembly 。⭐872 · Rust |
| Topics | MCP服务器WebAssemblyRustAI工具链可扩展插件 |
| GitHub | https://github.com/hyper-mcp-rs/hyper-mcp |
| License | Apache-2.0 |
| 语言 | Rust |
收录时间:2026-05-19 · 更新时间:2026-05-30 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端