Skip to main content
Glama
hiveflowai

HiveFlow MCP Server

Official
by hiveflowai

execute_flow

Execute a specific workflow in HiveFlow automation platform using its ID, with optional inputs to trigger automated processes.

Instructions

Ejecuta un flujo de trabajo específico

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
flowIdYesID del flujo a ejecutar
inputsNoInputs opcionales para el flujo

Implementation Reference

  • The executeFlow handler function that POSTs to the HiveFlow API to execute the specified flow with optional inputs and returns a success message with execution details.
    async executeFlow(args) { const response = await this.hiveflowClient.post(`/api/flows/${args.flowId}/execute`, { inputs: args.inputs || {} }); return { content: [ { type: 'text', text: `🚀 Flujo ejecutado exitosamente.\nExecution ID: ${response.data.executionId || 'N/A'}\nEstado: ${response.data.status || 'iniciado'}` } ] }; }
  • Input schema defining the parameters for the execute_flow tool: required flowId (string) and optional inputs (object).
    inputSchema: { type: 'object', properties: { flowId: { type: 'string', description: 'ID del flujo a ejecutar' }, inputs: { type: 'object', description: 'Inputs opcionales para el flujo' } }, required: ['flowId'] }
  • src/index.js:104-121 (registration)
    Registration of the execute_flow tool in the ListTools response, including name, description, and input schema.
    { name: 'execute_flow', description: 'Ejecuta un flujo de trabajo específico', inputSchema: { type: 'object', properties: { flowId: { type: 'string', description: 'ID del flujo a ejecutar' }, inputs: { type: 'object', description: 'Inputs opcionales para el flujo' } }, required: ['flowId'] } },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hiveflowai/hiveflow-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server