refactor: big test cleanup

This commit is contained in:
Timothy
2026-04-09 22:04:23 -07:00
parent cbf7cc0a37
commit da0aa65c31
96 changed files with 770 additions and 18508 deletions
+3 -12
View File
@@ -90,19 +90,10 @@ if "--stdio" not in sys.argv:
logger.info(f"Registered {len(tools)} tools: {tools}")
@mcp.custom_route("/health", methods=["GET"])
async def health_check(request: Request) -> PlainTextResponse:
"""Health check endpoint for container orchestration."""
return PlainTextResponse("OK")
@mcp.resource("health://status")
def health_check() -> str:
return "OK"
@mcp.custom_route("/", methods=["GET"])
async def index(request: Request) -> PlainTextResponse:
"""Landing page for browser visits."""
return PlainTextResponse("Welcome to the Hive MCP Server")
def main() -> None:
"""Entry point for the MCP server."""
parser = argparse.ArgumentParser(description="Aden Tools MCP Server")
parser.add_argument(