get_all_credentials
Retrieve all accessible Alteryx server credentials to manage authentication and access control for workflows and data connections.
Instructions
Get the list of all accessible credentials of the Alteryx server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.py:706-712 (handler)The core handler function that executes the tool logic by calling the Alteryx credentials API to get all credentials and formatting the response with pprint.def get_all_credentials(self): """Get the list of all accessible credentials of the Alteryx server""" try: api_response = self.credentials_api.credentials_get_credentials() return pprint.pformat(api_response) except ApiException as e: return f"Error: {e}"
- src/mcp_server.py:335-339 (registration)The MCP tool registration using the @app.tool() decorator, which delegates to the tools instance method.@self.app.tool() def get_all_credentials(): """Get the list of all accessible credentials of the Alteryx server""" return self.tools.get_all_credentials()