What problem does it solve? Building MCP servers and Python components for the THYROX meta-framework requires consistent conventions across design, implementation, and verification phases; this Skill provides phase-by-phase guidance so tools are specified, implemented, and audited correctly. ## Core Features & Use Cases - MCP Tool Contract Specification: Defines input/output schemas, preconditions, error behavior, and timeouts for each MCP tool during the design phase. - Ordered Implementation Workflow: Guides building the EvoAgentX adapter layer first, then dataclasses, then the MCP server with tool registration. - Security and Correctness Checklist: Verifies type hints, exec timeouts, blocked destructive command patterns, FAISS index persistence, and bootstrap idempotency. - Use Case: When adding a new MCP server under registry/mcp/, follow the Skill to specify tool contracts, implement the adapter and server, then validate that exec_cmd blocks dangerous patterns and store_memory persists the FAISS index. ## Quick Start Ask the AI to implement a new MCP server in registry/mcp following the python-mcp conventions, including the EvoAgentX adapter, tool schemas, and security checks.