Integrations
Provides an HTTP-based implementation that allows Node.js applications to connect to the MCP server over HTTP, with authentication via API key in the Authorization header.
mcphub_tools MCP Server
Mcp tools powered by aimcp, find mcps whatever you want. This server allows searching the MCP Hub for available MCPs.
Open Protocol
This server implements the Model Context Protocol (MCP). It acts as an MCP server that can be connected to by MCP clients (like compatible AI assistants or development tools).
Introduction
mcphub_tools
is an MCP server designed to interact with the MCP Hub. Its primary function is to provide a tool that allows users to search for MCPs (Model Context Protocols/Servers) registered on the hub based on keywords.
Tools
This server provides the following tool:
search_mcp_hub
- Description: Searches for MCPs on the MCP Hub.
- Input Schema:Copy
- Output: Returns a JSON string containing the search results from the MCP Hub API.
get_mcp_info
- Description: Gets detailed information about a specific MCP.
- Input Schema:Copy
- Output: Returns a JSON string containing the detailed information about the specified MCP.
Implementation Options
MCP Hub supports two different ways to implement MCP servers:
1. Standard stdio-based MCP Server
This is the traditional implementation where the MCP server communicates with clients through standard input/output (stdio). This approach is ideal for standalone command-line tools that can be integrated with MCP clients like Claude Desktop.
The easiest way to use the stdio-based implementation is through our published package:
2. HTTP-based MCP Server
MCP Hub also provides an HTTP-based implementation that allows AI assistants and other tools to connect to the MCP server over HTTP. This is implemented in the MCP Hub's API at /api/open/v1/streamable
.
The HTTP endpoint is available at:
Usage
Prerequisites
- Node.js and npm (or pnpm/yarn) installed for the stdio-based implementation.
- An API key from MCP Hub (https://www.aimcp.info).
How to get an API key
- Go to https://www.aimcp.info.
- Sign up or log in.
- Navigate to your profile or account settings.
- Look for an option to generate or retrieve your API key.
- Or you can access here to generate an API key. NOTE: The API key has rate limits for 20 requests per hour.
Authentication
The MCP API requires authentication with a valid API key. This key must be provided via:
- For stdio-based implementation: The environment variable
MCP_HUB_API_KEY
. - For HTTP-based implementation: The
Authorization
header as a Bearer token.
Integration with AI Assistants and MCP Clients
Claude Desktop Configuration
To use MCP Hub with Claude Desktop:
- Locate your Claude Desktop configuration file:
- Windows:
%APPDATA%\claude\config.json
- macOS:
~/Library/Application Support/claude/config.json
or~/.config/claude/config.json
- Linux:
~/.config/claude/config.json
- Windows:
- Add the following configuration:
- Restart Claude Desktop to apply the changes.
- In your conversation, you can access MCP Hub tools by typing "@mcp-hub".
Cline and Other CLI Tools
For command-line based tools like Cline:
- Create a configuration file named
servers.json
in your project directory:
- Launch the tool with reference to this configuration:
For Tools Supporting Remote MCP Servers
Some newer MCP clients support direct HTTP connections. Configure them using:
For Tools Using File-based Configuration (Cursor, etc.)
- Create a configuration file:
- Reference this file in your tool's settings or launch with the appropriate configuration parameter.
Running Manually
You can also run the stdio-based server manually for testing (ensure MCP_HUB_API_KEY
is set in your environment):
API Interface
This server interacts with the following MCP Hub API endpoint:
- Endpoint:
GET https://www.aimcp.info/api/open/v1/search
- Authentication: Requires a Bearer token in the
Authorization
header, using theMCP_HUB_API_KEY
. - Query Parameter:
keywords
(string)
Using the HTTP-based MCP API
MCP Hub provides an HTTP-based MCP server at /api/open/v1/streamable
that implements the Model Context Protocol. This allows AI assistants and tools to search for MCPs and retrieve MCP information directly.
Connection Steps
- First, establish a connection to get a session ID:
Response:
- Call a tool with the session ID:
Development & Deployment
Development
- Install Dependencies:
pnpm install
- Build:
pnpm run build
(compiles TypeScript to JavaScript inbuild/
) - Watch Mode:
pnpm run watch
(automatically recompiles on changes) - Testing with Inspector:
pnpm run inspector
(runs the server with the MCP Inspector tool)
Creating Your Own stdio-based MCP Server
If you want to create your own stdio-based MCP server, follow these steps:
- Set up your project:Copy
- Create your server implementation:
- Compile and run your server:Copy
- Test your server with the MCP Inspector tool:Copy
Deployment
- Ensure the server is built (
pnpm run build
). - The
build
directory contains the necessary JavaScript files. - The server can be run using
node build/index.js
or the commandmcphub_tools
if the package is installed appropriately (e.g., globally or linked). - Configure your MCP client/manager to point to the server executable and provide the
MCP_HUB_API_KEY
environment variable.
You can also publish your MCP server to npm so others can install and use it.
You must be authenticated.
Tools
An MCP server that allows searching for and retrieving information about Model Context Protocol servers registered on the MCP Hub.
Related MCP Servers
- AsecurityAlicenseAqualityA beginner-friendly Model Context Protocol (MCP) server that helps users understand MCP concepts, provides interactive examples, and lists available MCP servers. This server is designed to be a helpful companion for developers working with MCP. Also comes with a huge list of servers you can install.Last updated -3936JavaScriptApache 2.0
- -securityAlicense-qualityMCP Server simplifies the implementation of the Model Context Protocol by providing a user-friendly API to create custom tools and manage server workflows efficiently.Last updated -43TypeScriptMIT License
- -security-license-qualityA specialized server that helps users create new Model Context Protocol (MCP) servers by providing tools and templates for scaffolding projects with various capabilities.Last updated -1TypeScript
- -security-license-qualityA Model Context Protocol (MCP) server that interacts with system APIs, allowing users to check connections, search employees, register breakfast, and update chemical information by shifts.Last updated -2