diff --git a/.mokogitea/ISSUE_TEMPLATE/mcp_tool_request.md b/.mokogitea/ISSUE_TEMPLATE/mcp_tool_request.md new file mode 100644 index 0000000..2fe76d9 --- /dev/null +++ b/.mokogitea/ISSUE_TEMPLATE/mcp_tool_request.md @@ -0,0 +1,49 @@ +--- +name: New MCP Tool Request +about: Request a new tool to be added to this MCP server +title: '[TOOL] ' +labels: 'enhancement, mcp-tool' +assignees: '' + +--- + +## Tool Request + +### Tool Name +Proposed tool name (snake_case): `resource_action` + +### Description +What should this tool do? What API endpoint(s) does it map to? + +### API Endpoint(s) +- **Method**: [GET / POST / PUT / PATCH / DELETE] +- **Endpoint**: `/api/v1/...` +- **Auth**: [API Key / Token / None] + +### Parameters + +| Parameter | Type | Required | Description | +|---|---|---|---| +| `id` | number | Yes | Resource ID | +| `search` | string | No | Search filter | + +### Expected Response +```json +{ + "id": 1, + "name": "Example" +} +``` + +### Use Case +Describe when and why someone would use this tool from Claude or another AI assistant. + +### Connection Scope +- [ ] Works with all connections +- [ ] Specific to certain API versions +- [ ] Requires additional permissions + +### Checklist +- [ ] I have checked this tool does not already exist +- [ ] I have verified the API endpoint exists and is documented +- [ ] The proposed name follows the `resource_action` convention