Targetprocess MCP Server

by aaronsb
Verified

update_entity

Update an existing Target Process entity

Input Schema

NameRequiredDescriptionDefault
fieldsYes
idYesID of the entity to update
typeYesType of entity to update

Input Schema (JSON Schema)

{ "properties": { "fields": { "properties": { "assignedUser": { "properties": { "id": { "description": "User ID to assign", "type": "number" } }, "required": [ "id" ], "type": "object" }, "description": { "description": "New description for the entity", "type": "string" }, "name": { "description": "New name for the entity", "type": "string" }, "status": { "properties": { "id": { "description": "Status ID to set", "type": "number" } }, "required": [ "id" ], "type": "object" } }, "type": "object" }, "id": { "description": "ID of the entity to update", "type": "number" }, "type": { "description": "Type of entity to update", "enum": [ "UserStory", "Bug", "Task", "Feature", "Epic", "PortfolioEpic", "Solution", "Request", "Impediment", "TestCase", "TestPlan", "Project", "Team", "Iteration", "TeamIteration", "Release", "Program" ], "type": "string" } }, "required": [ "type", "id", "fields" ], "type": "object" }