create_repo_issue
Create issues on git repositories to track bugs, feature requests, or tasks using the Tangled collaboration platform.
Instructions
create an issue on a repository
Args: repo: repository identifier in 'owner/repo' format title: issue title body: optional issue body/description
Returns: dict with uri and cid of created issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| title | Yes | issue title |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"anyOf": [
{
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "issue body/description"
},
{
"type": "null"
}
],
"default": null
},
"repo": {
"description": "repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp')",
"type": "string"
},
"title": {
"description": "issue title",
"type": "string"
}
},
"required": [
"repo",
"title"
],
"type": "object"
}