drio
Open app

hyper-mcp

Source

📦️ A fast, secure MCP server that extends its capabilities through WebAssembly plugins.

Catalog onlyCatalog onlySTDIO

Overview

hyper-mcp is a powerful Model Context Protocol (MCP) server that allows users to build, publish, and run MCP applets with ease, leveraging WebAssembly plugins for enhanced functionality.

To use hyper-mcp, create a configuration file specifying the plugins you want to use, and then start the server using the command hyper-mcp.

  • Language Agnostic: Supports plugins in any language that compiles to WebAssembly. - Simple Distribution: Plugins can be packaged using Dockerfiles and published to any OCI registry. - Universal Compatibility: Works seamlessly with any MCP-compatible application. - Easy Configuration: New tools can be added by editing a config file and restarting the server.
  1. Building custom plugins for specific tasks in MCP-compatible applications.
  2. Integrating with IDEs like Cursor for enhanced development workflows.
  3. Self-hosting in enterprise environments using existing container infrastructure.

Add to your AI client

Use these steps to connect hyper-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "hyper-mcp-tuananh": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hyper-mcp-tuananh"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "hyper-mcp-tuananh": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hyper-mcp-tuananh"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "hyper-mcp-tuananh": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hyper-mcp-tuananh"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "hyper-mcp-tuananh": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hyper-mcp-tuananh"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "hyper-mcp-tuananh": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hyper-mcp-tuananh"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "hyper-mcp-tuananh": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hyper-mcp-tuananh"
      ]
    }
  }
}

FAQ

Can I use any programming language to build plugins?

Yes! You can build plugins in any language that compiles to WebAssembly.

How do I publish my plugin?

You can publish your plugin by building it, creating a Dockerfile, and pushing it to an OCI registry.

Is hyper-mcp suitable for enterprise use?

Yes! hyper-mcp is designed for easy integration with existing container infrastructure, making it suitable for enterprise environments.