Skip to main content
Glama

get_scenario_status

Check the execution status of a Make.com automation scenario using its execution ID to monitor workflow progress and results.

Instructions

获取Make.com scenario的执行状态

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
execution_idYesscenario执行ID

Implementation Reference

  • The handler function that implements the 'get_scenario_status' tool logic. Currently returns a placeholder text response with the execution ID and instructions to check Make.com dashboard, as full API integration is pending.
    private async getScenarioStatus(args: any) {
      // 这里可以调用Make.com API来获取执行状态
      // 需要配置Make.com API token
      return {
        content: [
          {
            type: 'text',
            text: `📊 Scenario状态查询\n` +
                  `执行ID: ${args.execution_id}\n` +
                  `状态: 此功能需要配置Make.com API访问权限\n` +
                  `提示: 请访问Make.com dashboard查看详细执行状态`
          }
        ]
      };
  • The input schema for the 'get_scenario_status' tool, defining an object with a required 'execution_id' string property.
    inputSchema: {
      type: 'object',
      properties: {
        execution_id: {
          type: 'string',
          description: 'scenario执行ID'
        }
      },
      required: ['execution_id']
    }
  • src/server.ts:62-75 (registration)
    The tool registration object in the server's tools list, specifying name, description, and input schema for 'get_scenario_status'.
    {
      name: 'get_scenario_status',
      description: '获取Make.com scenario的执行状态',
      inputSchema: {
        type: 'object',
        properties: {
          execution_id: {
            type: 'string',
            description: 'scenario执行ID'
          }
        },
        required: ['execution_id']
      }
    },
  • src/server.ts:97-98 (registration)
    The switch case in the request handler that dispatches calls to the 'get_scenario_status' tool by invoking the getScenarioStatus method.
    case 'get_scenario_status':
      return await this.getScenarioStatus(args);

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/Joseph19820124/make-mcp-integration-playbook'

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