- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
665 B
665 B
Add a new tool to an existing MCP server with proper schema and handler.
Steps
- Understand the tool requirements:
- Define the tool schema:
- Implement the tool handler:
- Register the tool with the MCP server:
- Add input validation:
- Write a test for the tool handler.
- Update the server documentation with the new tool.
Format
Tool: <name>
Description: <what it does>
Parameters:
- <name>: <type> (<required|optional>) - <description>
Rules
- Tool names must be unique within the server.
- Descriptions must be clear enough for an AI to use the tool correctly.
- All required parameters must be validated before execution.