create_mcp_server
Register a new MCP server in HiveFlow by specifying a unique name, command, and optional arguments, enabling integration of AI assistants for managing automation workflows.
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"
}