list_experiments
View all CloudLab experiments to monitor and manage research projects, enabling control of nodes, access to logs, and experiment lifecycle oversight.
Instructions
List all your CloudLab experiments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:263-273 (handler)Handler for the list_experiments tool. Fetches the list of experiments from the CloudLab API endpoint '/experiments' and returns the result as formatted JSON text.
case "list_experiments": { const result = await cloudlabRequest("/experiments"); return { content: [ { type: "text", text: JSON.stringify(result, null, 2), }, ], }; } - src/index.ts:100-108 (registration)Registration of the list_experiments tool in the ListTools response, including name, description, and input schema (no parameters required).
{ name: "list_experiments", description: "List all your CloudLab experiments", inputSchema: { type: "object", properties: {}, required: [], }, }, - src/index.ts:103-107 (schema)Input schema for list_experiments tool, which requires no parameters.
inputSchema: { type: "object", properties: {}, required: [], },