MCPHub: The Ultimate Tool That Makes AI Tool Management Simple

10 months ago

Let's Start With What MCP Is

You've probably used Claude or Cursor, right? They can directly query your database, read your files, and even call various APIs. The MCP (Model Context Protocol) is what makes this possible.

Simply put, MCP is like the USB interface for the AI world. Previously, each AI tool needed custom code to connect to different data sources. Now, with the MCP standard, you write it once and use it everywhere.

For example, if you write an MCP server to connect to a database, it can be used by Claude, Cursor, and any other AI tool that supports MCP.

What is MCPHub?

If MCP is the USB interface, then MCPHub is your USB hub.

Imagine you have dozens of MCP servers: one for querying databases, another for reading files, others for sending emails, checking the weather... Managing and configuring each one separately is a headache, right? MCPHub solves this problem – managing all your MCP servers in one place.

Even better, it exposes these servers as HTTP interfaces. Your AI tools only need to connect to one address to access all the functionality.

https://appstore.lazycat.cloud/#/shop/detail/top.j0k3r.mcphub

Getting Started Guide

After installing the application, open the login page and log in using the default credentials admin / admin123.

image.png

You can see it comes pre-integrated with 4 servers by default.

image.png

  1. amap  Typically used for map-related services, such as geolocation queries, map data interfaces, etc. Suitable for automation tasks that require geospatial information processing.

  2. playwright  This is an automated browser tool server, primarily used for web automation testing, data scraping, and automating web page interactions. Ideal for scenarios like web scraping, automation scripts, and UI testing.

  3. fetch  Used for HTTP requests and data fetching. Can serve as a foundational service for API calls, data collection, and information synchronization. Suitable for automated workflows that require scheduled data fetching or syncing from external sources.

  4. slack  Integrates with Slack for message推送 and notifications. Can be used to automatically send messages, notifications, alerts, etc. Suitable for team collaboration and automated message reminders.

You can change the language to Chinese in the settings.

image.png

Configuring Your MCP Servers

Click on Servers, then Add a Server.

image.png

  • Server Name: Can be anything, e.g., time-mcp.
  • Server Type
    • stdio: Communicates via standard input/output by launching a process locally/in a container. Choose this for most command-line based MCP servers.
    • sse: Connects to a remote service over the network (HTTP + Server-Sent Events). Choose this only if your MCP provides an HTTP SSE interface.

Generally, prefer stdio; only choose sse if you explicitly have a remote SSE service address.

image.png

  • Command
    • When stdio is selected, specify the executable command or interpreter used to start the MCP.
      • Node/npm ecosystem: npx, node
      • Python: python, python3
      • Direct executable: /usr/local/bin/your-mcp
    • When sse is selected, a local command is usually not needed.

image.png

Click on Marketplace to see integrated common MCP servers that can be installed directly.

image.png

After successful installation, you can see them on the homepage.

image.png

image.png

Connecting Your AI Tools

After configuring MCPHub, simply add the server address in your AI tool.

Using it in Claude Desktop:

Edit Claude's configuration file (Mac/Linux: ~/.config/claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "mcphub-all": {
      "command": "curl",
      "args": ["-N", "https://mcphub.lazycat.heiyu.space/sse"]
    }
  }
}

Using it in Cursor:

image.png

Find the MCP configuration in the settings and add:

https://mcphub.your-lazycat.heiyu.space/mcp

Using Groups

Create different groups in the management interface, for example:

  • Development Group: Contains tools like database, Git, code analysis, etc.
  • Operations Group: Contains tools like data analysis, report generation, etc.
  • Daily Group: Contains tools like weather, translation, search, etc.

image.png

Then connect to them separately:

https://mcphub.your-lazycat.heiyu.space/mcp/development
https://mcphub.your-lazycat.heiyu.space/mcp/operations

Final Thoughts

MCPHub is a great tool for enhancing your AI tool experience. No need to repeatedly configure MCP servers in every AI tool. Configure them once in MCPHub, and all your AI tools can connect and use them.

If you frequently use AI tools like Claude and Cursor and want them to access your data and tools, MCPHub is definitely worth trying.

Author
天天
MCPHub: The Ultimate Tool That Makes AI Tool Management Simple