list_connections
Retrieve and display all 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:328-336 (handler)MCP CallTool handler for 'list_connections': invokes main.api.listConnections(args) and formats the result as JSON text content.case "list_connections": return { content: [ { type: "text", text: JSON.stringify(await main.api.listConnections(args), null, 2) } ] };
- src/handlers.ts:108-116 (schema)Input schema definition for the list_connections tool, allowing optional appKey filter.inputSchema: { type: "object", properties: { appKey: { type: "string", description: "Filter by specific app" } } }
- src/handlers.ts:105-117 (registration)Registration of the list_connections tool in the ListTools response, including name, description, and schema.{ name: "list_connections", description: "List all app connections", inputSchema: { type: "object", properties: { appKey: { type: "string", description: "Filter by specific app" } } } },
- src/api.ts:24-26 (helper)API helper function listConnections, currently a stub referencing logic from index.ts (not implemented).listConnections: async function(args: any = {}) { // ... copy listConnections logic from index.ts ... },