Skip to main content
Glama
ivossos
by ivossos

get_members

Retrieve dimension members from Oracle EPM Cloud FCCS to access and analyze financial consolidation data for reporting and management tasks.

Instructions

Get members of a specific dimension / Obter membros de uma dimensao especifica

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dimension_nameYesThe name of the dimension

Implementation Reference

  • The main handler function implementing get_members tool: retrieves dimension members from FCCS client with caching support.
    async def get_members(dimension_name: str) -> dict[str, Any]: """Get members of a specific dimension / Obter membros de uma dimensao especifica. Args: dimension_name: The name of the dimension. Returns: dict: List of dimension members. """ cache = get_cache_service() cache_key = f"members:{dimension_name}" if cache: cached_data = cache.get(cache_key) if cached_data: return {"status": "success", "data": cached_data, "source": "cache"} members = await _client.get_members(_app_name, dimension_name) if cache and members: cache.set(cache_key, members, ttl_seconds=86400) # Cache for 24 hours return {"status": "success", "data": members, "source": "fccs"}
  • JSON schema definition for the get_members tool input, part of TOOL_DEFINITIONS list.
    "name": "get_members", "description": "Get members of a specific dimension / Obter membros de uma dimensao especifica", "inputSchema": { "type": "object", "properties": { "dimension_name": { "type": "string", "description": "The name of the dimension", }, }, "required": ["dimension_name"], }, },
  • Registration of dimension tools including get_members in the central TOOL_HANDLERS dictionary.
    "get_dimensions": dimensions.get_dimensions, "get_members": dimensions.get_members, "get_dimension_hierarchy": dimensions.get_dimension_hierarchy,

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/ivossos/fccs-mcp-ag-server'

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