SkillMesh: MCP-Friendly Router for Large Tool Catalogs Reduces Context Size by 70%

SkillMesh is an MCP-friendly router designed to handle large tool and skill catalogs for AI agents. The creator identified that loading entire tool catalogs into every prompt hurts tool selection accuracy and inflates token costs as catalogs grow.
How SkillMesh Works
The approach focuses on selective context injection:
- Retrieves top-K relevant expert cards for the current query
- Injects only those cards into the agent's context
- Keeps the rest of the catalog out of the prompt
This reduces context size by approximately 70% in many cases and enables agents to scale across multiple domains without prompt bloat.
Current Features
SkillMesh currently supports:
- Claude integration via MCP server (
skillmesh-mcp) - Codex skill bundle integration
- OpenAI-style function schema in tool invocation metadata
Tools and capabilities can be installed by role, adding relevant functionality based on the task.
Example Use Case
For a query like "clean sales data, train a baseline model, and generate charts," SkillMesh would route to only relevant data processing, machine learning, and visualization expert cards instead of loading the entire catalog.
Installation and Feedback
The project is available on GitHub at SkillMesh. The creator is seeking feedback on:
- Retrieval quality (whether it picks the right tools)
- Registry format (ease of adding new tools)
- MCP integration ergonomics
📖 Read the full source: r/LocalLLaMA
👀 See Also

WinRemote MCP: Open Source MCP Server for Full Control of Windows Desktops
WinRemote MCP provides AI agents with full control over Windows desktops, allowing for UI detection, file operations, registry access, and more, utilizing over 40 tools.

Comparison of RunLobster vs Hosted OpenClaw Solutions
A developer tested RunLobster against KiwiClaw, xCloud, and self-hosted OpenClaw for 2 weeks each. RunLobster differs fundamentally as a product rather than just hosting, with 3,000 one-click integrations and memory that builds over time.

Workaround for ChatGPT Project Migration Gap: Export Scripts and Prompts
A developer created Python scripts and Claude prompts to migrate conversations from ChatGPT to Claude when ChatGPT's data export lacks project membership information. The solution extracts conversations using titles captured from the interface.
Tendril: A self-extending agent that builds and registers tools on the fly
Tendril is an agentic sandbox that autonomously discovers, builds, and registers tools. It starts with just three bootstrap tools and dynamically grows its capability registry without asking the user.