From a8ce587c28e2bcb4942b1c4e7f53c31e3086e85b Mon Sep 17 00:00:00 2001 From: Brandon Barringer Date: Sun, 6 Jul 2025 12:36:50 -0500 Subject: [PATCH] Add Teamwork MCP server to registry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add server configuration for Vizioz/Teamwork-MCP - Supports project management, task creation, and subtasks - Category: project-management - Required env vars: TEAMWORK_DOMAIN, TEAMWORK_USERNAME, TEAMWORK_PASSWORD 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- servers/teamwork/server.yaml | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 servers/teamwork/server.yaml diff --git a/servers/teamwork/server.yaml b/servers/teamwork/server.yaml new file mode 100644 index 0000000..1514b7b --- /dev/null +++ b/servers/teamwork/server.yaml @@ -0,0 +1,42 @@ +name: teamwork +image: mcp/teamwork +type: server +meta: + category: project-management + tags: + - teamwork + - project-management + - tasks + - collaboration +about: + title: Teamwork + description: Connect to Teamwork API for project management, task creation, subtasks, team collaboration, and comprehensive project tracking. + icon: https://www.teamwork.com/favicon-32x32.png +source: + project: https://github.com/Vizioz/Teamwork-MCP + branch: main +config: + description: Configure connection to your Teamwork workspace + secrets: + - name: teamwork.password + env: TEAMWORK_PASSWORD + example: your-teamwork-password + env: + - name: TEAMWORK_DOMAIN + example: your-company + value: '{{teamwork.domain}}' + - name: TEAMWORK_USERNAME + example: your-email@example.com + value: '{{teamwork.username}}' + parameters: + type: object + properties: + domain: + type: string + description: Your Teamwork subdomain (without .teamwork.com) + username: + type: string + description: Your Teamwork username/email + required: + - domain + - username \ No newline at end of file