mcp-toolkit-hub
MCP hub server that aggregates tools from multiple domain packages into a single globally-available interface.
README
mcp-toolkit-hub
MCP hub server that aggregates tools from multiple domain packages into a single globally-available interface.
Status
Stage: POC (Proof of Concept)
Why a Hub?
Without a hub, each MCP package needs separate configuration, and tools only work in specific project directories. The hub pattern gives you:
- One config — Single
config.yamllists all your domain packages - Global availability — Tools work regardless of which directory Claude Code starts from
- Namespace clarity — Tools prefixed by domain:
briefing_run_weekly_digest,travel_search_flights
Architecture
User Config (~/.config/mcp-toolkit-hub/config.yaml)
↓
mcp-toolkit-hub (this package)
↓
Domain Packages (mcp-content-feed, mcp-travel, etc.)
Prerequisites
- Node.js 18+
- One or more domain MCP packages installed locally
- Domain packages built (
npm run buildin each)
Quick Start
# 1. Clone and install
git clone https://github.com/lokkaflokka/mcp-toolkit-hub.git
cd mcp-toolkit-hub
npm install
# 2. Create your config
mkdir -p ~/.config/mcp-toolkit-hub
cp examples/config.example.yaml ~/.config/mcp-toolkit-hub/config.yaml
# Edit config.yaml with paths to your domain packages
# 3. Build
npm run build
# 4. Add to Claude Code (user-level for global availability)
claude mcp add -s user personal node /path/to/mcp-toolkit-hub/dist/server/index.js
Configuration
Edit ~/.config/mcp-toolkit-hub/config.yaml:
schema_version: "1.0"
packages:
briefing:
path: ~/path/to/mcp-content-feed
enabled: true
travel:
path: ~/path/to/mcp-travel
enabled: false # Disabled packages don't expose tools
Available Tools
The hub exposes tools from enabled domain packages, plus:
| Tool | Description |
|---|---|
orchestrator_status |
Shows which packages are loaded and available |
Domain package tools are namespaced:
briefing_run_weekly_digestbriefing_run_rss_digestbriefing_content_feed_statustravel_search_flights(when enabled)
Development
npm install
npm run build
npm run dev # Run with tsx for development
npm test # Run tests
Key Constraints
- Distributable — This package contains generic orchestration logic; personal config stays in
~/.config/ - Delegates, doesn't duplicate — Business logic lives in domain packages. This package only routes.
- Namespaced tools — Tools prefixed with package name using underscores (MCP spec disallows colons)
Related Packages
- mcp-content-feed — Content scoring and briefing (Gmail + RSS + saved URLs)
- mcp-travel — Flight search and price tracking
License
MIT
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.