Skip to main content
Glama

get_all_user_assets

Retrieve all assets associated with a specific user from the AYX-MCP-Wrapper server by providing the user ID, simplifying asset management and access control.

Instructions

Get all the assets for a user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYes

Implementation Reference

  • Core handler function in AYXMCPTools class that calls the Alteryx API to retrieve all assets owned by the specified user_id and formats the response.
    def get_all_user_assets(self, user_id: str): """Get all the assets for a user""" try: api_response = self.users_api.users_get_users_assets(user_id) return pprint.pformat(api_response) except ApiException as e: return f"Error: {e}"
  • MCP tool registration using FastMCP's @app.tool() decorator, providing a thin wrapper that delegates to the underlying tools instance method.
    @self.app.tool() def get_all_user_assets(user_id: str): """Get all the assets for a user""" return self.tools.get_all_user_assets(user_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