Skip to main content
Glama

lookup_connection

Retrieve a DCM Connection referenced in workflows by providing its ID, enabling efficient management and integration of data connections within the AYX-MCP-Wrapper server.

Instructions

Lookup a DCM Connection as referenced in workflows

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
connection_idYes

Implementation Reference

  • The core implementation of the lookup_connection tool handler, which calls the DCM API to lookup the connection and formats the response.
    def lookup_connection(self, connection_id: str): """Lookup a DCM Connection as referenced in workflows""" try: api_response = self.dcm_api.d_cme_lookup_dcm_connection(connection_id) return pprint.pformat(api_response) except ApiException as e: return f"Error: {e}"
  • MCP tool registration for lookup_connection, which delegates to the tools instance.
    @self.app.tool() def lookup_connection(connection_id: str): """Lookup a DCM Connection as referenced in workflows""" return self.tools.lookup_connection(connection_id)

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/jupiterbak/AYX-MCP-Wrapper'

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