@stubbedev/atlassian-mcp 0.5.8 → 0.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,7 +70,8 @@ A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server for **s
|
|
|
70
70
|
- "create a task under epic FOO-100" → `jira_mutate` with `create.issueType=Task`, `create.parent=FOO-100` (auto-detects Epic and sets Epic Link)
|
|
71
71
|
- "move FOO-123 under epic FOO-100" → `jira_mutate` with `update.epicLink=FOO-100`
|
|
72
72
|
- "create an epic" → `jira_mutate` with `create.issueType=Epic` (Epic Name defaults to the summary)
|
|
73
|
-
- "set story points to 5" → `jira_mutate` with `update.customFields={"Story Points": 5}
|
|
73
|
+
- "set story points to 5" → `jira_mutate` with `update.customFields={"Story Points": 5}` — values are plain (option label, username, date, array of labels); the server wraps them per the field schema
|
|
74
|
+
- "what can I set on this ticket / on an Epic?" → `jira_search resource=fields` with `issueKey=FOO-123` (edit screen) or `project=FOO`+`issueType=Epic` (create screen): required and optional fields, value shapes, allowed values
|
|
74
75
|
|
|
75
76
|
---
|
|
76
77
|
|