add-prompt-version-tag
Tag a prompt version with a specific identifier to manage and track iterations effectively. Use the tool to assign names like 'production' to versions for clear organization and version control within the MCP server.
Instructions
Add a tag to a specific prompt version. The operation returns no content on success (204 status code).
Example usage: Tag prompt version 'promptversionid1234' with the name 'production'
Expected return: Confirmation message of successful tag addition
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
prompt_version_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"prompt_version_id": {
"type": "string"
}
},
"required": [
"prompt_version_id",
"name"
],
"type": "object"
}