From d0b1d5cf15bd72baaaaeaad0f07e60d248366a2a Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Wed, 20 May 2026 00:36:33 +0000 Subject: [PATCH] chore: add issue templates [skip ci] --- .gitea/ISSUE_TEMPLATE/mcp_api_integration.md | 48 ++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .gitea/ISSUE_TEMPLATE/mcp_api_integration.md diff --git a/.gitea/ISSUE_TEMPLATE/mcp_api_integration.md b/.gitea/ISSUE_TEMPLATE/mcp_api_integration.md new file mode 100644 index 0000000..c91fa56 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/mcp_api_integration.md @@ -0,0 +1,48 @@ +--- +name: API Integration Request +about: Request integration with a new REST API or service +title: '[API] ' +labels: 'enhancement, api-integration' +assignees: '' + +--- + +## API Integration Request + +### Target API +- **Service Name**: [e.g., Akeeba Backup, Joomla Web Services] +- **API Documentation**: [URL to API docs] +- **API Type**: [REST / GraphQL / SOAP] +- **Authentication**: [API Key / OAuth / Bearer Token / Basic Auth] + +### Proposed Tools +List the MCP tools this integration would provide: + +| Tool Name | HTTP Method | Endpoint | Description | +|---|---|---|---| +| `service_list` | GET | `/api/items` | List all items | +| `service_get` | GET | `/api/items/{id}` | Get single item | +| `service_create` | POST | `/api/items` | Create item | + +### Multi-Connection +- [ ] Single instance only +- [ ] Multiple instances (production, staging, dev) +- [ ] Multi-tenant (one connection per client) + +### Use Case +Describe the workflow this integration enables for AI assistants. + +### Priority +- [ ] Critical — blocking current work +- [ ] High — needed soon +- [ ] Medium — would improve workflow +- [ ] Low — nice to have + +### Existing Alternatives +Are there other ways to accomplish this today? If so, why is an MCP integration better? + +### Checklist +- [ ] API documentation is available and accessible +- [ ] API supports the required authentication method +- [ ] I have tested the API endpoints manually +- [ ] The integration follows the Template-MCP architecture pattern