targetprocess-mcp-server 2.3.1 → 2.4.0

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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -61,6 +61,8 @@ Cards — Read
61
61
  - `get_bug_comments` — Get comments on a bug (id, optional results)
62
62
  - `get_user_story_comments` — Get comments on a user story (id, optional results)
63
63
  - `get_user_story_test_cases` — Fetch the linked test plan and all its test cases (with steps) for a user story (resourceId)
64
+ - `get_card_relations` — Get all relations (Dependency, Blocker, Relation, Link, Duplicate) for a card, with direction and the related card (id)
65
+ - `get_relation_types` — List the relation types available in this instance (id + name); use to find the `relationType` name for `create_card_relation` (no params)
64
66
  - `search_tp_cards` — Search TP cards by keyword or phrase in description (keyword, optional entityType: UserStories | Bugs, default: UserStories)
65
67
 
66
68
  Cards — Write
@@ -70,6 +72,11 @@ Cards — Write
70
72
  > Resolve state name → ID via `get_bug_workflows` before passing `entityStateId`
71
73
  - `update_user_story` — Update an existing user story (id, optional title, optional description, optional projectId, optional teamId, optional entityStateId)
72
74
  > Resolve state name → ID via `get_user_story_workflows` before passing `entityStateId`
75
+ - `create_card_relation` — Create a relation between two cards (masterId, slaveId, optional relationType name, default: "Depends on")
76
+ > The Slave depends on the Master — the Master must be done first
77
+ > `relationType` is matched by name against this instance's types; resolve exact names via `get_relation_types` (it's resolved to an ID before the API call, since TP rejects relation types passed by name)
78
+ - `delete_card_relation` — Remove a relation by its relation ID (relationId)
79
+ > Get the `relationId` from `get_card_relations` first — it's the relation's own ID, not a card ID
73
80
  - `update_user_story_state` — Update the sub-state (team assignment entity state) for a user story (id, optional entityStateId, optional teamId, optional teamAssignmentId)
74
81
  > 1. Call `get_user_story_content` first to find the assigned team and `teamAssignmentId`
75
82
  > 2. Call `get_user_story_workflows` to resolve the target state name → `entityStateId`
package/package.json CHANGED
@@ -27,7 +27,7 @@
27
27
  "engines": {
28
28
  "node": ">=20.x"
29
29
  },
30
- "version": "2.3.1",
30
+ "version": "2.4.0",
31
31
  "description": "MCP server for Tartget Process",
32
32
  "main": "build/index.js",
33
33
  "keywords": [