list_connections
Retrieve all configured app connections from the Automatisch workflow automation platform, with optional filtering by specific applications.
Instructions
List all app connections
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appKey | No | Filter by specific app |
Implementation Reference
- src/handlers.ts:105-117 (registration)Registration of the 'list_connections' tool including name, description, and input schema in the ListToolsRequestHandler response.{ name: "list_connections", description: "List all app connections", inputSchema: { type: "object", properties: { appKey: { type: "string", description: "Filter by specific app" } } } },
- src/handlers.ts:328-336 (handler)The CallToolRequestHandler case for 'list_connections' that invokes the API helper and formats the response as JSON text content.case "list_connections": return { content: [ { type: "text", text: JSON.stringify(await main.api.listConnections(args), null, 2) } ] };
- src/api.ts:24-26 (helper)API helper method stub for listConnections, intended to contain the core logic for listing connections (currently unimplemented).listConnections: async function(args: any = {}) { // ... copy listConnections logic from index.ts ... },