Targetprocess MCP Server

by aaronsb
Verified

create_entity

Create a new Target Process entity

Input Schema

NameRequiredDescriptionDefault
assignedUserNo
descriptionNoDescription of the entity
nameYesName/title of the entity
projectYes
teamNo
typeYesType of entity to create

Input Schema (JSON Schema)

{ "properties": { "assignedUser": { "properties": { "id": { "description": "User ID to assign", "type": "number" } }, "type": "object" }, "description": { "description": "Description of the entity", "type": "string" }, "name": { "description": "Name/title of the entity", "type": "string" }, "project": { "properties": { "id": { "description": "Project ID", "type": "number" } }, "required": [ "id" ], "type": "object" }, "team": { "properties": { "id": { "description": "Team ID", "type": "number" } }, "type": "object" }, "type": { "description": "Type of entity to create", "enum": [ "UserStory", "Bug", "Task", "Feature", "Epic", "PortfolioEpic", "Solution", "Request", "Impediment", "TestCase", "TestPlan", "Project", "Team", "Iteration", "TeamIteration", "Release", "Program" ], "type": "string" } }, "required": [ "type", "name", "project" ], "type": "object" }