update_repo_issue
Update an existing issue on a Tangled repository. Provide the repository identifier (owner/repo), issue number, and optional new title, body, or labels to replace existing ones.
Instructions
update an existing issue on a repository
Args: repo: repository identifier in 'owner/repo' format issue_id: issue number to update title: optional new title (if None, keeps existing) body: optional new body (if None, keeps existing) labels: optional list of label names to SET (replaces existing)
Returns: UpdateIssueResult with url (clickable link) and issue_id
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| issue_id | Yes | issue number (e.g., 1, 2, 3...) | |
| title | No | ||
| body | No | ||
| labels | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| url | Yes | construct clickable tangled.org URL |