Skip to main content
Glama

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

Implementation Reference

  • 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) } ] };
  • Input schema definition for the list_connections tool, allowing optional appKey filter.
    inputSchema: { type: "object", properties: { appKey: { type: "string", description: "Filter by specific app" } } }
  • 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" } } } },
  • 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 ... },

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