Skip to main content
Glama

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
NameRequiredDescriptionDefault
appKeyNoFilter by specific app

Implementation Reference

  • 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" } } } },
  • 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) } ] };
  • 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 ... },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/milisp/automatisch-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server