
CoreMCP
A lightweight orchestration hub for managing local Model Context Protocol (MCP) tools in a unified way, allowing users to build, manage, and call their AI tools from IDEs, terminal, and custom assistants.
README
CoreMCP · Central Hub for Model Context Protocols
🧠 Build, manage, and call your local AI tools — with one unified MCP gateway, one protocol to connect them all.
✨ What is CoreMCP?
CoreMCP is a lightweight, modular orchestration hub for running and managing all your local MCP tools (Model Context Protocols) in a unified way — across your IDEs, terminal, and custom AI assistants.
It connects your Python-based AI tools, UI interfaces, and editor plugins into a consistent, extensible, and elegant local system.
🔧 Key Features
- 🧩 MCP Gateway – Single entry point for all local tools, built with FastAPI + WebSocket.
- 🖥️ Unified UI Server – Dynamic web-based UI (React/Tauri) for cross-tool interactions.
- ⚙️ Plugin SDKs – Call MCP tools from Cursor, VS Code, PyCharm, CLI, or your own agent.
- 🔁 Session Management – Persistent workflows with full context lifecycle.
- 🛠️ Dynamic Tool Registration – Add new MCP modules via simple decorators.
- 🔒 Local-first & Secure – Runs fully offline with token-auth and IPC/WebSocket options.
🚀 Quick Start
1. Clone the repo
git clone https://github.com/your-org/coremcp.git
cd coremcp
2. Install and run Gateway
cd mcp_gateway
pip install -r requirements.txt
python main.py
3. Run UI service (Tauri or Web)
cd mcp_ui
npm install
npm run dev
4. Call a tool from CLI
python examples/call_tool.py \
--tool collect_feedback \
--input "{'summary': 'Here is the AI task result'}"
Or from the VS Code plugin (coming soon).
📦 Supported MCP Tools
Tool | Description | UI Required |
---|---|---|
mcp-feedback-collector |
Collects human feedback for AI outputs | ✅ |
mcp-summarizer |
Summarizes text using local LLM APIs | ❌ |
mcp-context-cache |
Stores/retrieves working memory | ❌ |
(Add your own!) | Just decorate with @mcp.tool() |
Depends |
🧠 How It Works
+------------+ +------------------+ +------------------+
| IDE/CLI | ==> | CoreMCP Hub | ==> | MCP Tool (Py) |
| Plugin/SDK | | - Tool Router | | - Collect/Reply |
+------------+ | - Session Mgmt | +------------------+
|
v
+--------------+
| UI Server |
| (Tauri/Web) |
+--------------+
🛠️ Build Your Own MCP Tool
# mcp_tools/mcp_hello/tool.py
from coremcp import mcp
@mcp.tool(name="hello", ui="SimpleInput")
def hello_tool(input: dict):
name = input.get("name", "World")
return f"Hello, {name}!"
Add to your mcp_tools
folder and it will be auto-registered!
🔐 Local-First Security
- ✅ Runs on
localhost
only (default) - 🔑 Token-based authorization
- 🔁 Supports IPC or WebSocket routing
- 🧪 Safe tool sandboxing coming soon
📚 Docs & Community
- 📖 Getting Started Guide
- 📦 Tool Plugin System
- 💬 Join the Discord (planned)
- 🧪 Coming soon: marketplace, remote agent support, CLI generator...
🧱 Tech Stack
- 🐍 Python 3.11, FastAPI, WebSocket
- 🌐 React + Vite + Tailwind (UI)
- 🧳 Tauri (native desktop build)
- ⚡ JSON Schema + Dynamic UI render
- 🔗 Local plugin SDKs: TS / Python
📜 License
MIT © 2024-present [wuaikaiyuan]
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.