Hyper MCP

v1.0.0Developer Toolsstable

A configurable MCP server wrapper for Cursor that eliminates tool count limits when using the Model Context Protocol.

aiextismllmmcpmcp-server
Share:
875
Stars
0
Downloads
0
Weekly
0/5

What is Hyper MCP?

Hyper MCP is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to configurable mcp server wrapper for cursor that eliminates tool count limits when using the model context protocol.

A configurable MCP server wrapper for Cursor that eliminates tool count limits when using the Model Context Protocol.

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • A configurable MCP server wrapper for Cursor that eliminates

Use Cases

Eliminate tool count limits in Cursor
Configurable MCP server wrapper
kranners

Maintainer

LicenseGPL 3.0
Languagerust
Versionv1.0.0
UpdatedMay 20, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx hyper

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Hyper MCP

Hyper MCP (jailbreak-mcp) is a configurable MCP server wrapper designed for Cursor and other MCP clients that lets you define named 'modes', each of which exposes a curated subset of tools, prompts, and resources from one or more downstream MCP servers. By switching modes you control exactly which capabilities are visible to the AI, which prevents context-window bloat and sidesteps tool-count limits that some clients enforce. This makes it practical to maintain a single config that covers many different workflows without overloading any individual session.

Prerequisites

  • Node.js 18 or later installed (npx must be available)
  • An MCP-compatible client such as Cursor, Claude Desktop, or VS Code with Continue
  • At least one downstream MCP server you want to wrap (e.g. a filesystem or GitHub server)
  • A jailbreak.mcp.json configuration file defining your modes
1

Create a jailbreak.mcp.json config file

This file declares the downstream MCP servers and the named modes that control which tools each mode exposes. Place it in a stable path such as your home directory.

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-filesystem", "/tmp"]
    }
  },
  "modes": {
    "default": {
      "filesystem": {
        "tools": ["read_file", "list_directory"]
      }
    },
    "write": {
      "filesystem": {
        "tools": ["read_file", "write_file", "list_directory"]
      }
    }
  }
}
2

Add hyper-mcp to your MCP client configuration

Point the wrapper at your config file by passing its path as the first argument to jailbreak-mcp.

{
  "mcpServers": {
    "hyper": {
      "command": "npx",
      "args": ["jailbreak-mcp@latest", "/path/to/jailbreak.mcp.json"]
    }
  }
}
3

Restart the MCP client

Restart Cursor or Claude Desktop so the wrapper server is launched and connects to the configured downstream servers.

4

Verify available tools

In your MCP client's tool list you should see only the tools allowed by the active mode, not the full set from every downstream server.

5

Switch modes to change the active tool set

Ask the AI to switch to a different mode, or update the config and restart. Each mode name maps to the curated server-tool pairs you defined.

Hyper MCP Examples

Client configuration

Minimal claude_desktop_config.json entry for hyper-mcp pointing to a config file in the home directory.

{
  "mcpServers": {
    "hyper": {
      "command": "npx",
      "args": ["jailbreak-mcp@latest", "/Users/yourname/jailbreak.mcp.json"]
    }
  }
}

Prompts to try

After connecting, use these prompts to exercise mode-based tool control.

- "List the tools currently available to you in this session."
- "Switch to write mode so I can edit files."
- "Using only the tools in the default mode, read the file /tmp/notes.txt."
- "What modes are configured in the jailbreak config?"

Troubleshooting Hyper MCP

The server starts but no tools appear in the client

Check that the path passed to jailbreak-mcp points to a valid jailbreak.mcp.json file that has a 'modes.default' key. Run 'npx jailbreak-mcp@latest /path/to/config.json' in a terminal to see startup errors.

Downstream MCP server fails to launch inside the wrapper

Verify that the downstream server command (e.g. npx @modelcontextprotocol/server-filesystem) works standalone in a terminal. Ensure all its prerequisites are installed and paths are absolute.

Tool count still hits client limits even with the wrapper

Reduce the number of tools in each mode by listing only the specific tool names you need. Avoid using wildcard entries that import all tools from a server.

Frequently Asked Questions about Hyper MCP

What is Hyper MCP?

Hyper MCP is a Model Context Protocol (MCP) server that configurable mcp server wrapper for cursor that eliminates tool count limits when using the model context protocol. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Hyper MCP?

Follow the installation instructions on the Hyper MCP GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Hyper MCP?

Hyper MCP works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Hyper MCP free to use?

Yes, Hyper MCP is open source and available under the GPL 3.0 license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "hyper": { "command": "npx", "args": ["-y", "hyper"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Hyper MCP?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides