Replies: 1 comment 1 reply
|
Thanks for the suggestion, @buck13up ! 🙂 |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Summary
Enable support for custom fields in all task-related methods defined in
internal/twprojects/tasks.go.Many Teamwork Projects environments rely on custom fields to store operational or integration metadata. The current implementation does not expose these fields, limiting the ability of integrations and agents to fully interact with tasks.
Adding support for custom fields would allow tasks to be created, read, and updated with their associated custom metadata.
Problem
The task structures and methods in
internal/twprojects/tasks.gocurrently support only the standard task attributes exposed by the Teamwork API.There is no mechanism to:
As a result, integrations built on top of this MCP layer cannot fully support Teamwork deployments that rely on custom fields for workflow management, internal classification, or external system mappings.
All reactions