create_part
Generate a new enhancement part in DevRev by specifying type, name, owners, parent parts, and description using the MCP server.
Instructions
Create a new part (enhancement) in DevRev
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The description of the part | |
name | Yes | ||
owned_by | Yes | The DevRev IDs of the users assigned to the part | |
parent_part | Yes | The DevRev IDs of the parent parts | |
type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the part",
"type": "string"
},
"name": {
"type": "string"
},
"owned_by": {
"description": "The DevRev IDs of the users assigned to the part",
"items": {
"type": "string"
},
"type": "array"
},
"parent_part": {
"description": "The DevRev IDs of the parent parts",
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"enum": [
"enhancement"
],
"type": "string"
}
},
"required": [
"type",
"name",
"owned_by",
"parent_part"
],
"type": "object"
}