Skip to main content
Glama

twprojects-create_link

Create a new link in a specified Teamwork project by providing the project ID and URL, with optional title, description, tags, and notifications.

Instructions

Create link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYesThe URL of the link. This is the actual web address that the link points to.
titleNoThe title of the link, which provides a brief summary of the purpose of the link.
notifyNoWho to notify of the new link. Omit it unless the user named who to notify: the default notifies all project members, and a value here replaces that set rather than adding to it, so a narrower one silently drops everyone else who would have been told. Accepts the string "all" to notify all project members, the boolean true as an alias for "all", the boolean false to notify nobody, a plain array of user IDs (e.g. [123, 456]), or an object selecting user_ids, company_ids, team_ids and/or job_role_ids (e.g. {"user_ids": [123, 456]}).all
tag_idsNoA list of tag IDs to associate with the link.
project_idYesThe ID of the project to create the link in.
descriptionNoThe description of the link. Longer text that provides detailed information about the link.
notify_current_userNoWhether the current user should be notified about the new link.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed10 schema fields changedv1.39.3
    • removedInput schema / properties / description / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedInput schema / properties / description / type
      Added value: +"string"
    • changedInput schema / properties / notify / anyOf
      Previous value: -[
      -  {
      -    "description": "Notify all project members.",
      -    "enum": [
      -      "all"
      -    ],
      -    "type": "string"
      -  },
      -  {
      -    "description": "true is the same as \"all\": notify all project members. false notifies nobody.",
      -    "type": "boolean"
      -  },
      -  {
      -    "description": "The IDs of the users to notify; shorthand for {\"user_ids\": [...]}.",
      -    "items": {
      -      "type": "integer"
      -    },
      -    "minItems": 1,
      -    "type": "array"
      -  },
      -  {
      -    "anyOf": [
      -      {
      -        "required": [
      -          "user_ids"
      -        ]
      -      },
      -      {
      -        "required": [
      -          "company_ids"
      -        ]
      -      },
      -      {
      -        "required": [
      -          "team_ids"
      -        ]
      -      },
      -      {
      -        "required": [
      -          "job_role_ids"
      -        ]
      -      }
      -    ],
      -    "maxProperties": 4,
      -    "minProperties": 1,
      -    "properties": {
      -      "company_ids": {
      -        "items": {
      -          "type": "integer"
      -        },
      -        "minItems": 1,
      -        "type": "array"
      -      },
      -      "job_role_ids": {
      -        "items": {
      -          "type": "integer"
      -        },
      -        "minItems": 1,
      -        "type": "array"
      -      },
      -      "team_ids": {
      -        "items": {
      -          "type": "integer"
      -        },
      -        "minItems": 1,
      -        "type": "array"
      -      },
      -      "user_ids": {
      -        "items": {
      -          "type": "integer"
      -        },
      -        "minItems": 1,
      -        "type": "array"
      -      }
      -    },
      -    "type": "object"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "description": "Notify all project members.",
      +    "enum": [
      +      "all"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "description": "true is the same as \"all\": notify all project members. false notifies nobody.",
      +    "type": "boolean"
      +  },
      +  {
      +    "description": "The IDs of the users to notify; shorthand for {\"user_ids\": [...]}.",
      +    "items": {
      +      "type": "integer"
      +    },
      +    "minItems": 1,
      +    "type": "array"
      +  },
      +  {
      +    "anyOf": [
      +      {
      +        "required": [
      +          "user_ids"
      +        ]
      +      },
      +      {
      +        "required": [
      +          "company_ids"
      +        ]
      +      },
      +      {
      +        "required": [
      +          "team_ids"
      +        ]
      +      },
      +      {
      +        "required": [
      +          "job_role_ids"
      +        ]
      +      }
      +    ],
      +    "maxProperties": 4,
      +    "minProperties": 1,
      +    "properties": {
      +      "company_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "job_role_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "team_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "user_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      }
      +    },
      +    "type": "object"
      +  }
      +]
    • removedInput schema / properties / notify_current_user / anyOf
      Removed value: -[
      -  {
      -    "type": "boolean"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedInput schema / properties / notify_current_user / type
      Added value: +"boolean"
    • removedInput schema / properties / tag_ids / anyOf
      Removed value: -[
      -  {
      -    "items": {
      -      "type": "integer"
      -    },
      -    "type": "array"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedInput schema / properties / tag_ids / items
      Added value: +{
      +  "type": "integer"
      +}
    • addedInput schema / properties / tag_ids / type
      Added value: +"array"
    • removedInput schema / properties / title / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedInput schema / properties / title / type
      Added value: +"string"
  2. Changed1 schema field changedv1.38.0
    • changedInput schema / properties / notify / description
      Previous value: -"Who to notify of the new link. Accepts the string \"all\" to notify all project members, the boolean true as an alias for \"all\", the boolean false to notify nobody, a plain array of user IDs (e.g. [123, 456]), or an object selecting user_ids, company_ids, team_ids and/or job_role_ids (e.g. {\"user_ids\": [123, 456]})."New value: +"Who to notify of the new link. Omit it unless the user named who to notify: the default notifies all project members, and a value here replaces that set rather than adding to it, so a narrower one silently drops everyone else who would have been told. Accepts the string \"all\" to notify all project members, the boolean true as an alias for \"all\", the boolean false to notify nobody, a plain array of user IDs (e.g. [123, 456]), or an object selecting user_ids, company_ids, team_ids and/or job_role_ids (e.g. {\"user_ids\": [123, 456]})."
  3. Changed2 schema fields changedv1.27.2
    • changedInput schema / properties / notify / anyOf
      Previous value: -[
      -  {
      -    "anyOf": [
      -      {
      -        "description": "Notify all project members.",
      -        "enum": [
      -          "all"
      -        ],
      -        "type": "string"
      -      },
      -      {
      -        "anyOf": [
      -          {
      -            "required": [
      -              "user_ids"
      -            ]
      -          },
      -          {
      -            "required": [
      -              "company_ids"
      -            ]
      -          },
      -          {
      -            "required": [
      -              "team_ids"
      -            ]
      -          },
      -          {
      -            "required": [
      -              "job_role_ids"
      -            ]
      -          }
      -        ],
      -        "maxProperties": 4,
      -        "minProperties": 1,
      -        "properties": {
      -          "company_ids": {
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          },
      -          "job_role_ids": {
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          },
      -          "team_ids": {
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          },
      -          "user_ids": {
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          }
      -        },
      -        "type": "object"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "description": "Notify all project members.",
      +    "enum": [
      +      "all"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "description": "true is the same as \"all\": notify all project members. false notifies nobody.",
      +    "type": "boolean"
      +  },
      +  {
      +    "description": "The IDs of the users to notify; shorthand for {\"user_ids\": [...]}.",
      +    "items": {
      +      "type": "integer"
      +    },
      +    "minItems": 1,
      +    "type": "array"
      +  },
      +  {
      +    "anyOf": [
      +      {
      +        "required": [
      +          "user_ids"
      +        ]
      +      },
      +      {
      +        "required": [
      +          "company_ids"
      +        ]
      +      },
      +      {
      +        "required": [
      +          "team_ids"
      +        ]
      +      },
      +      {
      +        "required": [
      +          "job_role_ids"
      +        ]
      +      }
      +    ],
      +    "maxProperties": 4,
      +    "minProperties": 1,
      +    "properties": {
      +      "company_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "job_role_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "team_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "user_ids": {
      +        "items": {
      +          "type": "integer"
      +        },
      +        "minItems": 1,
      +        "type": "array"
      +      }
      +    },
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • changedInput schema / properties / notify / description
      Previous value: -"Who to notify of the new link."New value: +"Who to notify of the new link. Accepts the string \"all\" to notify all project members, the boolean true as an alias for \"all\", the boolean false to notify nobody, a plain array of user IDs (e.g. [123, 456]), or an object selecting user_ids, company_ids, team_ids and/or job_role_ids (e.g. {\"user_ids\": [123, 456]})."
  4. Addedv1.26.0
  5. Removedv1.25.0
  6. Changed1 schema field changedv1.23.0
    • changedInput schema / properties / notify / anyOf
      Previous value: -[
      -  {
      -    "anyOf": [
      -      {
      -        "description": "Notify all project members.",
      -        "enum": [
      -          "all"
      -        ],
      -        "type": "string"
      -      },
      -      {
      -        "anyOf": [
      -          {
      -            "required": [
      -              "user_ids"
      -            ]
      -          },
      -          {
      -            "required": [
      -              "company_ids"
      -            ]
      -          },
      -          {
      -            "required": [
      -              "team_ids"
      -            ]
      -          }
      -        ],
      -        "maxProperties": 3,
      -        "minProperties": 1,
      -        "properties": {
      -          "company_ids": {
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          },
      -          "team_ids": {
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          },
      -          "user_ids": {
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          }
      -        },
      -        "type": "object"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "anyOf": [
      +      {
      +        "description": "Notify all project members.",
      +        "enum": [
      +          "all"
      +        ],
      +        "type": "string"
      +      },
      +      {
      +        "anyOf": [
      +          {
      +            "required": [
      +              "user_ids"
      +            ]
      +          },
      +          {
      +            "required": [
      +              "company_ids"
      +            ]
      +          },
      +          {
      +            "required": [
      +              "team_ids"
      +            ]
      +          },
      +          {
      +            "required": [
      +              "job_role_ids"
      +            ]
      +          }
      +        ],
      +        "maxProperties": 4,
      +        "minProperties": 1,
      +        "properties": {
      +          "company_ids": {
      +            "items": {
      +              "type": "integer"
      +            },
      +            "minItems": 1,
      +            "type": "array"
      +          },
      +          "job_role_ids": {
      +            "items": {
      +              "type": "integer"
      +            },
      +            "minItems": 1,
      +            "type": "array"
      +          },
      +          "team_ids": {
      +            "items": {
      +              "type": "integer"
      +            },
      +            "minItems": 1,
      +            "type": "array"
      +          },
      +          "user_ids": {
      +            "items": {
      +              "type": "integer"
      +            },
      +            "minItems": 1,
      +            "type": "array"
      +          }
      +        },
      +        "type": "object"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
  7. Changed2 schema fields changedv1.20.3
    • changedInput schema / properties / notify / anyOf
      Previous value: -[
      -  {
      -    "anyOf": [
      -      {
      -        "description": "Notify all project members.",
      -        "enum": [
      -          "all"
      -        ],
      -        "type": "string"
      -      },
      -      {
      -        "anyOf": [
      -          {
      -            "required": [
      -              "user_ids"
      -            ]
      -          },
      -          {
      -            "required": [
      -              "company_ids"
      -            ]
      -          },
      -          {
      -            "required": [
      -              "team_ids"
      -            ]
      -          }
      -        ],
      -        "description": "An object containing the users, teams or companies to notify. At least one of the properties (user_ids, team_ids, company_ids) is required.",
      -        "maxProperties": 3,
      -        "minProperties": 1,
      -        "properties": {
      -          "company_ids": {
      -            "description": "List of company IDs to notify.",
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          },
      -          "team_ids": {
      -            "description": "List of team IDs to notify.",
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          },
      -          "user_ids": {
      -            "description": "List of user IDs to notify.",
      -            "items": {
      -              "type": "integer"
      -            },
      -            "minItems": 1,
      -            "type": "array"
      -          }
      -        },
      -        "type": "object"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "anyOf": [
      +      {
      +        "description": "Notify all project members.",
      +        "enum": [
      +          "all"
      +        ],
      +        "type": "string"
      +      },
      +      {
      +        "anyOf": [
      +          {
      +            "required": [
      +              "user_ids"
      +            ]
      +          },
      +          {
      +            "required": [
      +              "company_ids"
      +            ]
      +          },
      +          {
      +            "required": [
      +              "team_ids"
      +            ]
      +          }
      +        ],
      +        "maxProperties": 3,
      +        "minProperties": 1,
      +        "properties": {
      +          "company_ids": {
      +            "items": {
      +              "type": "integer"
      +            },
      +            "minItems": 1,
      +            "type": "array"
      +          },
      +          "team_ids": {
      +            "items": {
      +              "type": "integer"
      +            },
      +            "minItems": 1,
      +            "type": "array"
      +          },
      +          "user_ids": {
      +            "items": {
      +              "type": "integer"
      +            },
      +            "minItems": 1,
      +            "type": "array"
      +          }
      +        },
      +        "type": "object"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • changedInput schema / properties / notify / description
      Previous value: -"Who should be notified about the new link. Accepts either 'all' or an object specifying user, team, or company IDs. By default, all project members are notified."New value: +"Who to notify of the new link."
  8. Addedv1.18.3
  9. Removedv1.18.2
  10. Addedv1.17.2

TDQS

C2.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses no behavioral traits. It does not mention notification side effects, default notify behavior, or any other consequences of creating a link. The annotations offer no safety profile (readOnlyHint=false, destructiveHint=false), so the description carries the burden but fails to add context. No contradiction exists between description and annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short, but this is under-specification rather than conciseness. It is a single trivial sentence that restates the tool name and provides no substantive information, so it fails to earn its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a mutation tool with 7 parameters and no output schema, yet the description is nearly empty. A useful description would clarify what a link is, that `code` is the URL, and that creating a link may notify project members by default. The schema partially compensates, but the tool-level description is inadequate for an agent to understand the full context of the operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all seven parameters, including the elaborate `notify` semantics. The description 'Create link' adds no parameter-level information, so the baseline of 3 applies per the rubric.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Create link.' is a direct restatement of the tool name and title, providing no additional meaning. It does not explain what a link is in this domain, what fields are involved, or how it differs from sibling tools like twprojects-get_link, twprojects-list_links, or twprojects-update_link. This is a tautology rather than a clear purpose statement.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no indication of when to use this tool, what prerequisites exist, or how it compares to alternatives. It does not mention that the link is created within a project, nor does it provide any scenario-based guidance. There is no misleading information, but there is also no guidance at all.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools