create_mcp_server
Register a new MCP server in HiveFlow to connect AI assistants with the automation platform for managing and executing workflows through natural language commands.
Instructions
Registra un nuevo servidor MCP en HiveFlow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | Argumentos del comando | |
command | Yes | Comando para ejecutar el servidor | |
description | No | Descripción del servidor | |
name | Yes | Nombre único del servidor MCP |
Input Schema (JSON Schema)
{
"properties": {
"args": {
"description": "Argumentos del comando",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Comando para ejecutar el servidor",
"type": "string"
},
"description": {
"description": "Descripción del servidor",
"type": "string"
},
"name": {
"description": "Nombre único del servidor MCP",
"type": "string"
}
},
"required": [
"name",
"command"
],
"type": "object"
}