Skip to main content
Glama

lookup_connection

Retrieve DCM Connection details used in Alteryx workflows by providing the connection identifier. This tool helps users access connection configurations for workflow management.

Instructions

Lookup a DCM Connection as referenced in workflows

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
connection_idYes

Implementation Reference

  • The main handler function in the Tools class that performs the actual API call to lookup the DCM connection using the provided connection_id and returns a pretty-formatted response or error.
    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 decorator and wrapper function in MCPServer that delegates the call to the underlying tools instance's lookup_connection method.
    @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