Skip to main content
Glama
hiveflowai

HiveFlow MCP Server

Official
by hiveflowai

list_mcp_servers

Lists configured MCP servers within the HiveFlow automation platform to help users manage their connected automation tools.

Instructions

Lista los servidores MCP configurados en HiveFlow

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function that implements the 'list_mcp_servers' tool. It makes an API call to '/api/mcp/servers', processes the servers list, formats it as a markdown-style text response, and returns it in the MCP content format.
    async listMCPServers() { const response = await this.hiveflowClient.get('/api/mcp/servers'); const servers = response.data.servers || []; const serversList = servers.map(server => `β€’ ${server.name} - Estado: ${server.status} (${server.isConnected ? 'Conectado' : 'Desconectado'})` ).join('\n'); return { content: [ { type: 'text', text: `πŸ”Œ Servidores MCP (${servers.length}):\n\n${serversList || 'No hay servidores MCP configurados'}` } ] }; }
  • src/index.js:150-157 (registration)
    Registration of the 'list_mcp_servers' tool in the ListToolsRequestSchema handler. Includes name, description, and empty input schema (no parameters required).
    { name: 'list_mcp_servers', description: 'Lista los servidores MCP configurados en HiveFlow', inputSchema: { type: 'object', properties: {} } },
  • src/index.js:226-227 (registration)
    Dispatch/registration case in the CallToolRequestSchema switch statement that routes calls to the listMCPServers handler method.
    case 'list_mcp_servers': return await this.listMCPServers();

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