{"id":25204647,"url":"https://github.com/tuananh/hyper-mcp","last_synced_at":"2025-05-16T02:09:43.796Z","repository":{"id":273884689,"uuid":"914828187","full_name":"tuananh/hyper-mcp","owner":"tuananh","description":"📦️ A fast, secure MCP server that extends its capabilities through WebAssembly plugins.","archived":false,"fork":false,"pushed_at":"2025-05-05T13:09:21.000Z","size":83409,"stargazers_count":477,"open_issues_count":9,"forks_count":32,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-05-05T13:53:56.887Z","etag":null,"topics":["extism","mcp","mcp-server","oci","wasm"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tuananh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-10T11:45:03.000Z","updated_at":"2025-05-05T12:55:48.000Z","dependencies_parsed_at":"2025-03-31T03:19:45.736Z","dependency_job_id":"4b391e99-e972-4ca9-a331-05594f0c6f28","html_url":"https://github.com/tuananh/hyper-mcp","commit_stats":null,"previous_names":["tuananh/hyper-mcp"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuananh%2Fhyper-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuananh%2Fhyper-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuananh%2Fhyper-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuananh%2Fhyper-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tuananh","download_url":"https://codeload.github.com/tuananh/hyper-mcp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254453667,"owners_count":22073618,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["extism","mcp","mcp-server","oci","wasm"],"created_at":"2025-02-10T08:19:11.566Z","updated_at":"2025-05-16T02:09:43.789Z","avatar_url":"https://github.com/tuananh.png","language":"Rust","funding_links":[],"categories":["Development Tools MCP Servers","AI Agents \u0026 Autonomy Frameworks","Rust","📚 Projects (1974 total)","🤖 AI/ML","MCP Servers","MCP Servers \u0026 Integrations","Open-source MCP Gateways"],"sub_categories":["MCP Servers","Security \u0026 Reverse Engineering","Other IDEs"],"readme":"\u003cdiv align=\"center\"\u003e\n\n[![Rust](https://img.shields.io/badge/rust-%23000000.svg?logo=rust\u0026logoColor=white)](https://crates.io/crates/hyper-mcp)\n[![License](https://img.shields.io/badge/License-Apache--2.0-blue)](#license)\n[![Issues - hyper-mcp](https://img.shields.io/github/issues/tuananh/hyper-mcp)](https://github.com/tuananh/hyper-mcp/issues)\n![GitHub Release](https://img.shields.io/github/v/release/tuananh/hyper-mcp)\n\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cpicture\u003e\n    \u003cimg alt=\"hyper-mcp logo\" src=\"./assets/logo.png\" width=\"50%\"\u003e\n  \u003c/picture\u003e\n\u003c/div\u003e\n\n# hyper-mcp\n\nA fast, secure MCP server that extends its capabilities through WebAssembly plugins.\n\n## What is it?\n\nhyper-mcp makes it easy to add AI capabilities to your applications. It works with Claude Desktop, Cursor IDE, and other MCP-compatible apps. Write plugins in your favorite language, distribute them through container registries, and run them anywhere - from cloud to edge.\n\n## Features\n\n- Write plugins in any language that compiles to WebAssembly\n- Distribute plugins via standard OCI registries (like Docker Hub)\n- Built on [Extism](https://github.com/extism/extism) for rock-solid plugin support\n- Lightweight enough for resource-constrained environments\n- Support all 3 protocols in the spec: `stdio`, `sse` and `streamble-http`.\n- Deploy anywhere: serverless, edge, mobile, IoT devices\n- Cross-platform compatibility out of the box\n\n## Security\n\nBuilt with security-first mindset:\n\n- Sandboxed plugins that can't access your system without permission\n- Memory-safe execution with resource limits\n- Secure plugin distribution through container registries\n- Fine-grained access control for host functions\n- OCI plugin images are signed at publish time and verified at load time with [sigstore](https://www.sigstore.dev/).\n\n## Getting Started\n\n1. Create your config file:\n   - Linux: `$HOME/.config/hyper-mcp/config.json`\n   - Windows: `{FOLDERID_RoamingAppData}`. Eg: `C:\\Users\\Alice\\AppData\\Roaming`\n   - macOS: `$HOME/Library/Application Support/hyper-mcp/config.json`\n\n```json\n{\n  \"plugins\": [\n    {\n      \"name\": \"time\",\n      \"path\": \"oci://ghcr.io/tuananh/time-plugin:latest\"\n    },\n    {\n      \"name\": \"qr-code\",\n      \"path\": \"oci://ghcr.io/tuananh/qrcode-plugin:latest\"\n    },\n    {\n      \"name\": \"hash\",\n      \"path\": \"oci://ghcr.io/tuananh/hash-plugin:latest\"\n    },\n    {\n      \"name\": \"myip\",\n      \"path\": \"oci://ghcr.io/tuananh/myip-plugin:latest\",\n      \"runtime_config\": {\n        \"allowed_hosts\": [\"1.1.1.1\"]\n      }\n    },\n    {\n      \"name\": \"fetch\",\n      \"path\": \"oci://ghcr.io/tuananh/fetch-plugin:latest\",\n      \"runtime_config\": {\n        \"allowed_hosts\": [\"*\"],\n        \"memory_limit\": \"100 MB\"\n      }\n    }\n  ]\n}\n```\n\n2. Start the server:\n\n```sh\n$ hyper-mcp\n```\n\n- By default, it will use `stdio` transport. If you want to use SSE, use flag `--transport sse` or streamable HTTP with `--transport streamable-http`.\n- If you want to debug, use `RUST_LOG=info`.\n- If you're loading unsigned OCI plugin, you need to set `insecure_skip_signature` flag or env var `HYPER_MCP_INSECURE_SKIP_SIGNATURE` to `true`\n\n## Using with Cursor IDE\n\nYou can configure hyper-mcp either globally for all projects or specifically for individual projects.\n\n1. For project-scope configuration, create `.cursor/mcp.json` in your project root:\n```json\n{\n  \"mcpServers\": {\n    \"hyper-mcp\": {\n      \"command\": \"/path/to/hyper-mcp\"\n    }\n  }\n}\n```\n\n2. Set up hyper-mcp in Cursor's settings:\n   ![cursor mcp](./assets/cursor-mcp.png)\n\n3. Start using tools through chat:\n   ![cursor mcp chat](./assets/cursor-mcp-1.png)\n\n## Available Plugins\n\nWe maintain several example plugins to get you started:\n\n- [time](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/time): Get current time and do time calculations (Rust)\n- [qr-code](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/qr-code): Generate QR codes (Rust)\n- [hash](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/hash): Generate various types of hashes (Rust)\n- [myip](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/myip): Get your current IP (Rust)\n- [fetch](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/fetch): Basic webpage fetching (Rust)\n- [crypto-price](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/crypto-price): Get cryptocurrency prices (Go)\n- [fs](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/fs): File system operations (Rust)\n- [github](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/github): GitHub plugin (Go)\n- [eval-py](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/eval-py): Evaluate Python code with RustPython (Rust)\n- [arxiv](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/arxiv): Search \u0026 download arXiv papers (Rust)\n- [memory](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/memory): Let you store \u0026 retrieve memory, powered by SQLite (Rust)\n- [sqlite](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/sqlite): Interact with SQLite (Rust)\n- [crates-io](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/crates-io): Get crate general information, check crate latest version (Rust)\n- [gomodule](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/gomodule): Get Go modules info, version (Rust)\n- [qdrant](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/qdrant): keeping \u0026 retrieving memories to Qdrant vector search engine (Rust)\n- [gitlab](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/gitlab): GitLab plugin (Rust)\n- [meme-generator](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/meme-generator): Meme generator (Rust)\n- [context7](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins/context7): Lookup library documentation (Rust)\n\n\n### Community-built plugins\n\n- [hackernews](https://github.com/hungran/hyper-mcp-hackernews-tool): This plugin connects to the Hacker News API to fetch the current top stories and display them with their titles, scores, authors, and URLs.\n- [release-monitor-id](https://github.com/ntheanh201/hyper-mcp-release-monitor-id-tool): This plugin retrieves project ID from release-monitoring.org, which helps track versions of released software.\n- [yahoo-finance](https://github.com/phamngocquy/hyper-mcp-yfinance): This plugin connects to the Yahoo Finance API to provide stock prices (OHLCV) based on a company name or ticker symbol.\n\n## Creating Plugins\n\nCheck out our [example plugins](https://github.com/tuananh/hyper-mcp/tree/main/examples/plugins) to learn how to build your own.\n\nTo publish a plugin:\n\n```dockerfile\n# example how to build with rust\nFROM rust:1.86-slim AS builder\n\nRUN rustup target add wasm32-wasip1 \u0026\u0026 \\\n    rustup component add rust-std --target wasm32-wasip1 \u0026\u0026 \\\n    cargo install cargo-auditable\n\nWORKDIR /workspace\nCOPY . .\nRUN cargo fetch\nRUN cargo auditable build --release --target wasm32-wasip1\n\nFROM scratch\nWORKDIR /\nCOPY --from=builder /workspace/target/wasm32-wasip1/release/plugin.wasm /plugin.wasm\n\n```\n\nThen build and push:\n```sh\ndocker build -t your-registry/plugin-name .\ndocker push your-registry/plugin-name\n```\n\n## License\n\n[Apache 2.0](./LICENSE)\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=tuananh/hyper-mcp\u0026type=Date)](https://www.star-history.com/#tuananh/hyper-mcp\u0026Date)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuananh%2Fhyper-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftuananh%2Fhyper-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuananh%2Fhyper-mcp/lists"}