hypertool-mcp

hypertool-mcp

Proxies to all of a user's MCPs and allows them to expose dynamic toolsets of tools from those servers to improve context and tool-usage.

Category
Visit Server

README

🛠️ Hypertool MCP

Too many MCP servers? Too many tools? Poor LLM performance?
Hypertool creates dynamic toolsets that dramatically improve tool usage performance.

Version TypeScript License: MIT

🎯 Why Hypertool?

The Problem: LLMs struggle when overwhelmed with too many tools. 50+ tools from multiple MCP servers? Your AI assistant becomes confused and ineffective.

The Solution: Hypertool lets you create focused, dynamic toolsets that expose only the tools you need for specific tasks. Think of it as "tool playlists" for your AI.

Only one MCP in mcp.json: Hypertool will read your mcp configuration and run as both a server (to cursor/claude code, etc.) and run or connect to your MCPs regardless of transport.

Cursor / Claude Code → Hypertool MCP → Your MCPs
📦 Multiple MCP Servers → 🎯 Focused Toolsets → 🚀 Better Performance

✨ Key Features

  • 🎯 Dynamic Toolsets: Create custom tool collections from any MCP servers
  • 🔄 Hot-Swapping: Switch between toolsets instantly - clients are notified automatically using MCP list tools changed notifications.
  • 🌐 Universal Compatibility: Works with any MCP client (Claude Desktop, etc.)
  • 🛡️ Tool Checks: Toolsets capture a hashed tool reference to validate that the right tool gets exposed.
  • 📝 Tool Annotations: Add contextual notes and usage guidance to tools to help AI understand when and how to use them effectively
  • 📡 Multiple Transports: Supports both stdio and HTTP/SSE protocols

🚀 Quick Start

Install hypertool in all your agentic apps.

npx -y @toolprint/hypertool-mcp@latest --install

# use the --dry-run flag to see what will be installed.

Just restart Cursor/Claude Code and it will pick up hypertool. All your MCP configs get automatically backed up so that you can restore them at any time.

Add Hypertool to your project

Claude Code

Option 1 - quick add

# In your project directory:
npx -y @toolprint/hypertool-mcp@latest --install claude-code

Option 2 - manual add

  1. Copy your .mcp.json to .mcp.hypertool.json
  2. Update your .mcp.json with only the hypertool MCP:
{
  "mcpServers": {
    "hypertool": {
      "type": "stdio",
      "command": "npx",
      "args": [
          "-y", 
          "@toolprint/hypertool-mcp@latest", 
          "--mcp-config", 
          ".mcp.hypertool.json"
      ]
    }
  }
}

Claude Code Dynamic Toolset Support - Currently CC doesn't support MCP tool change notifications (we know, it surprised us too) but we suspect this is coming soon. We've opened an issue here. Please give it an upvote if you want this too.

In the meantime, just restart your claude code session to pick up your newly equipped toolset OR run your hypertool-mcp with the --equip-toolset {name} flag and it will autoequip on boot.

🎯 Cursor

Option 1 - One command install

npx -y @toolprint/hypertool-mcp@latest --install cursor

This will:

  • Back up your current Cursor MCP configuration
  • Copy all existing servers to Hypertool's config
  • Add Hypertool as your main MCP server

Option 2

Install Hypertool MCP Server

Click the badge above to automatically install Hypertool MCP in Cursor IDE. This will add the server to your Cursor configuration and you can start using it immediately.

Note you will need to update the runtime flag for the hypertool mcp server --mcp-config to point to a copied version of Cursor's MCP settings. All of this is done automatically in Option 1.

Other Projects

  1. Copy your mcp.json to .mcp.hypertool.json
  2. Update your mcp.json with only the hypertool MCP:
{
  "mcpServers": {
    "hypertool": {
      "type": "stdio",
      "command": "npx",
      "args": [
          "-y", 
          "@toolprint/hypertool-mcp@latest", 
          "--mcp-config", 
          ".mcp.hypertool.json"
      ]
    }
  }
}

🎭 Creating Your First Toolset

Once Hypertool is running, you can use the built-in MCP tools to manage toolsets:

  1. List available tools: Use list-available-tools to see what's discovered
  2. Build a toolset: Use build-toolset to create a focused collection
  3. Equip the toolset: Use equip-toolset to activate it

Your MCP client (like Claude) can now call these tools directly:

Claude: Use the build-toolset tool to create a development toolset with echo and add_numbers

Result: A focused toolset with only the tools you need!

🔄 Hot-Swapping Toolsets Example

Just chat with your assistant to swap toolsets using the equip-toolset tool.

Hypertool will equip the tools and send a change notification so that your assistant can read and use the newly executable tools.

Add Notes to tools!

Sometimes descriptions and reading input parameters isn't enough for an LLM to figure out how to use a tool.

Hypertool gives your agents a add-tool-annotation tool that lets them add notes to reflect on better usage the next time so that they don't need to keep spinning in circles in new contexts.

🌐 Multiple Transport Support

Stdio (Default)

Perfect for Claude Desktop and most MCP clients:

hypertool-mcp --mcp-config {path_to_config}

HTTP/SSE

Have it run separately and listen on a port over HTTP:

hypertool-mcp --transport http --port 3000 --config test-mcp.json

Access via: http://localhost:3000/mcp

🛡️ Security & Validation

Hypertool validates tool references using cryptographic hashes:

{
  "name": "secure-toolset",
  "tools": [
    {
      "namespacedName": "everything.echo",
      "refId": "sha256:abc123...",
      "server": "everything"
    }
  ]
}
  • Secure by default: Rejects tools with changed schemas
  • Insecure mode: Available with --insecure flag (use carefully!)
  • Automatic validation: Toolsets are re-validated when servers reconnect

📋 Common Workflows

Development Setup

1. Start Hypertool: hypertool-mcp --config test-mcp.json
2. Ask Claude: "Use build-toolset to create a frontend toolset with echo and add_numbers"
3. Ask Claude: "Use equip-toolset to activate the frontend toolset"

Production Debugging

1. Ask Claude: "Use equip-toolset to switch to debug toolset"
2. Your AI now has access to focused debugging tools
3. MCP clients are automatically notified of the change

Team Collaboration

1. Ask Claude: "Use list-saved-toolsets to see available toolsets"
2. Share toolset configurations via your preferred method
3. Team members can equip the same toolsets for consistency

🔧 Configuration Reference

CLI Options

hypertool-mcp [options]

Options:
  --config <path>        MCP servers config file (default: .mcp.json)
  --transport <type>     Transport type: stdio|http (default: stdio)
  --port <number>        HTTP port (default: 3000)
  --equip-toolset <name> Load toolset on startup
  --debug                Verbose logging

Server Configuration

{
  "mcpServers": {
    "server-name": {
      "type": "stdio|sse",
      "command": "command-name",
      "args": ["arg1", "arg2"],
      "env": {
        "ENV_VAR": "value"
      }
    }
  }
}

🤝 Integration Examples

Equip a specific toolset on server spawn

{
  "mcpServers": {
    "hypertool": {
      "type": "stdio",
      "command": "hypertool-mcp",
      "args": ["--config", "/path/to/test-mcp.json", "--equip-toolset", "daily-dev"]
    }
  }
}

📊 Performance Impact

Before Hypertool:

  • 🐌 50+ tools exposed to LLM
  • 😵 Confused tool selection
  • 🔄 Slow response times

After Hypertool:

  • ⚡ 5-10 focused tools per context
  • 🎯 Precise tool selection
  • 🚀 Faster, more accurate responses

🛠️ Development

# Clone and setup
git clone https://github.com/yourorg/hypertool-mcp
cd hypertool-mcp
npm install

# Development
npm run dev        # Start with hot reload
npm test          # Run tests
npm run lint      # Code quality

📄 License

MIT License - see LICENSE file for details.


<div align="center">

Built by developers who got tired of overwhelming their AI with too many tools. Hope you find it useful! 🚀

<a href="https://toolprint.dev"> <img src="./assets/toolprint.png" alt="Toolprint" width="200"> </a>

<p> <strong>Built with ❤️ by <a href="https://toolprint.dev">Toolprint</a></strong><br> <sub>© 2025 OneGrep, Inc.</sub> </p>

</div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured