targetprocess-mcp-server 1.0.20 → 1.0.21
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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,6 +41,10 @@ Releases
|
|
|
41
41
|
- `get_release_open_bugs` — Get only active/open bugs for a release (name, withDescription, optional results)
|
|
42
42
|
- `get_release_open_user_stories` — Get only active/open user stories for a release (name, withDescription, optional results)
|
|
43
43
|
|
|
44
|
+
Features
|
|
45
|
+
- `get_feature_user_stories` — Get all user stories for a feature by its ID (id)
|
|
46
|
+
- `get_not_covered_user_stories_in_feature` — Get user stories in a feature not yet covered by tests, includes `covered` field based on "Test Automation" custom field (id)
|
|
47
|
+
|
|
44
48
|
Cards — Read
|
|
45
49
|
- `get_bug_content` — Fetch full content of a bug by ID (id)
|
|
46
50
|
- `get_user_story_content` — Fetch full content of a user story by ID (id)
|
|
@@ -54,6 +58,9 @@ Cards — Write
|
|
|
54
58
|
- `create_bug_based_on_card` — Create a bug linked to an existing user story or bug card (card object with id+type, title, bugContent, optional origin)
|
|
55
59
|
- `create_test_plan` — Create a test plan linked to a user story (title, userStoryId)
|
|
56
60
|
|
|
61
|
+
User
|
|
62
|
+
- `get_logged_in_user` — Get the currently logged-in user's info (no params needed)
|
|
63
|
+
|
|
57
64
|
> `origin` accepted values: `Production - Customer`, `Production - Internal`, `Pre-Release - Customer`, `Pre-Release - Internal`, `Regression - Dev01`, `Regression - Team Env`, `Manual QA` *(default)*, `Developer Raised`, `Operations`
|
|
58
65
|
---
|
|
59
66
|
|