Features: - FastMCP-based MCP server for Claude Code agent recommendations - Hierarchical agent architecture with 39 specialized agents - 10 MCP tools with enhanced LLM-friendly descriptions - Composed agent support with parent-child relationships - Project root configuration for focused recommendations - Smart agent recommendation engine with confidence scoring Server includes: - Core recommendation tools (recommend_agents, get_agent_content) - Project management tools (set/get/clear project roots) - Discovery tools (list_agents, server_stats) - Hierarchy navigation (get_sub_agents, get_parent_agent, get_agent_hierarchy) All tools properly annotated for calling LLM clarity with detailed arguments, return values, and usage examples.
8 lines
199 B
Python
8 lines
199 B
Python
"""
|
|
Claude Agent MCP Server
|
|
|
|
An MCP server that provides intelligent agent recommendations and delivery
|
|
for Claude Code projects. Built using our own agent template system!
|
|
"""
|
|
|
|
__version__ = "0.1.0" |