Skip to main content
Glama
ivossos

FCCS MCP Agentic Server

by ivossos

smart_retrieve

Retrieve financial consolidation data from Oracle EPM Cloud FCCS by specifying account, entity, period, years, scenario, and consolidation dimensions for analysis.

Instructions

Smart data retrieval with automatic 14-dimension handling / Recuperacao inteligente

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountYesThe Account member (e.g., 'FCCS_Net Income')
entityNoThe Entity member (default: 'FCCS_Total Geography')
periodNoThe Period member (default: 'Jan')
yearsNoThe Years member (default: 'FY24')
scenarioNoThe Scenario member (default: 'Actual')
consolidationNoThe Consolidation member (default: 'FCCS_Entity Total'). Valid values: 'FCCS_Entity Input', 'FCCS_Entity Consolidation', 'FCCS_Entity Total', 'FCCS_Proportion', 'FCCS_Elimination', 'FCCS_Contribution'.

Implementation Reference

  • The main handler function for smart_retrieve tool. Builds a 14-dimension grid definition with defaults and exports data slice from Consol cube.
    async def smart_retrieve(
        account: str,
        entity: str = "FCCS_Total Geography",
        period: str = "Jan",
        years: str = "FY24",
        scenario: str = "Actual",
        consolidation: str = "FCCS_Entity Total"
    ) -> dict[str, Any]:
        """Smart data retrieval with automatic 14-dimension handling / Recuperacao inteligente de dados.
    
        Args:
            account: The Account member (e.g., 'FCCS_Net Income').
            entity: The Entity member (default: 'FCCS_Total Geography').
            period: The Period member (default: 'Jan').
            years: The Years member (default: 'FY24').
            scenario: The Scenario member (default: 'Actual').
            consolidation: The Consolidation member (default: 'FCCS_Entity Total').
                Valid values: 'FCCS_Entity Input', 'FCCS_Entity Consolidation', 
                'FCCS_Entity Total', 'FCCS_Proportion', 'FCCS_Elimination', 'FCCS_Contribution'.
    
        Returns:
            dict: The retrieved data for the specified dimensions.
        """
        # Build grid definition with hardcoded defaults for 14 dimensions
        grid_definition = {
            "suppressMissingBlocks": True,
            "pov": {
                "members": [
                    [years], [scenario], ["FCCS_YTD"], [consolidation],
                    ["FCCS_Intercompany Top"], ["FCCS_Total Data Source"],
                    ["FCCS_Mvmts_Total"], [entity], ["Entity Currency"],
                    ["Total Custom 3"], ["Total Region"], ["Total Venturi Entity"],
                    ["Total Custom 4"]
                ]
            },
            "columns": [{"members": [[period]]}],
            "rows": [{"members": [[account]]}]
        }
        result = await _client.export_data_slice(_app_name, "Consol", grid_definition)
        return {"status": "success", "data": result}
  • Input schema definition for the smart_retrieve tool within the TOOL_DEFINITIONS list.
    {
        "name": "smart_retrieve",
        "description": "Smart data retrieval with automatic 14-dimension handling / Recuperacao inteligente",
        "inputSchema": {
            "type": "object",
            "properties": {
                "account": {
                    "type": "string",
                    "description": "The Account member (e.g., 'FCCS_Net Income')",
                },
                "entity": {
                    "type": "string",
                    "description": "The Entity member (default: 'FCCS_Total Geography')",
                },
                "period": {
                    "type": "string",
                    "description": "The Period member (default: 'Jan')",
                },
                "years": {
                    "type": "string",
                    "description": "The Years member (default: 'FY24')",
                },
                "scenario": {
                    "type": "string",
                    "description": "The Scenario member (default: 'Actual')",
                },
                "consolidation": {
                    "type": "string",
                    "description": "The Consolidation member (default: 'FCCS_Entity Total'). Valid values: 'FCCS_Entity Input', 'FCCS_Entity Consolidation', 'FCCS_Entity Total', 'FCCS_Proportion', 'FCCS_Elimination', 'FCCS_Contribution'.",
                },
            },
            "required": ["account"],
        },
  • Registration of the smart_retrieve handler in the TOOL_HANDLERS dictionary.
    "smart_retrieve": data.smart_retrieve,

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