waroom_create_service_label
Create custom labels for specific services on the Waroom MCP server, specifying a label name and color using a 6-digit hex code for clear categorization.
Instructions
特定のサービスに新しいラベルを作成します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | ラベルの色(6桁の16進数カラーコード、例: ff0000) | |
name | Yes | ラベル名 | |
service_name | Yes | サービス名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"description": "ラベルの色(6桁の16進数カラーコード、例: ff0000)",
"pattern": "^[0-9a-fA-F]{6}$",
"type": "string"
},
"name": {
"description": "ラベル名",
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"service_name": {
"description": "サービス名",
"maxLength": 100,
"minLength": 1,
"type": "string"
}
},
"required": [
"service_name",
"name",
"color"
],
"type": "object"
}