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
| Name | Required | Description | Default |
|---|---|---|---|
| execution_id | Yes | scenario执行ID |
Implementation Reference
- src/server.ts:190-203 (handler)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查看详细执行状态` } ] };
- src/server.ts:65-74 (schema)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);