Targetprocess MCP Server

by aaronsb
Verified

get_entity

Get details of a specific Target Process entity

Input Schema

NameRequiredDescriptionDefault
allow_informative_errorsNoWhen true, returns useful metadata even when operation fails
idYesID of the entity
includeNoRelated data to include
typeYesType of entity to retrieve

Input Schema (JSON Schema)

{ "properties": { "allow_informative_errors": { "default": false, "description": "When true, returns useful metadata even when operation fails", "type": "boolean" }, "id": { "description": "ID of the entity", "type": "number" }, "include": { "description": "Related data to include", "items": { "type": "string" }, "type": "array" }, "type": { "description": "Type of entity to retrieve", "enum": [ "UserStory", "Bug", "Task", "Feature", "Epic", "PortfolioEpic", "Solution", "Request", "Impediment", "TestCase", "TestPlan", "Project", "Team", "Iteration", "TeamIteration", "Release", "Program" ], "type": "string" } }, "required": [ "type", "id" ], "type": "object" }