We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a28afd8 commit b63488aCopy full SHA for b63488a
Framework/Core/scripts/dpl-mcp-server/dpl_mcp_server.py
@@ -237,6 +237,16 @@ async def get_logs(max_lines: int = 100) -> str:
237
return "\n".join(lines)
238
239
240
+@mcp.tool()
241
+async def start_devices() -> str:
242
+ """Resume all stopped DPL devices (send SIGCONT).
243
+
244
+ Use this when the workflow was started with -s (all devices paused).
245
+ """
246
+ await _send({"cmd": "start_devices"})
247
+ return "Sent SIGCONT to all active devices."
248
249
250
@mcp.tool()
251
async def enable_signpost(device: str, streams: list[str]) -> str:
252
"""Enable one or more signpost log streams for a DPL device.
0 commit comments