get_application_info
Retrieve FCCS application details from Oracle EPM Cloud for consolidation and close processes. Access configuration and status information to support financial reporting workflows.
Instructions
Get information about the FCCS application / Obter informacoes sobre a aplicacao FCCS
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- fccs_agent/tools/application.py:17-24 (handler)The main handler function that executes the get_application_info tool by calling the FCCS client to retrieve applications and returning the data wrapped in a success response.async def get_application_info() -> dict[str, Any]: """Get information about the FCCS application / Obter informacoes sobre a aplicacao FCCS. Returns: dict: Application details including name, type, and description. """ apps = await _client.get_applications() return {"status": "success", "data": apps}
- The tool schema definition including name, description, and empty inputSchema (no parameters required). Part of TOOL_DEFINITIONS list.{ "name": "get_application_info", "description": "Get information about the FCCS application / Obter informacoes sobre a aplicacao FCCS", "inputSchema": { "type": "object", "properties": {}, }, },
- fccs_agent/agent.py:140-141 (registration)Registration of the tool handler in the central TOOL_HANDLERS dictionary, mapping the tool name to the implementation function."get_application_info": application.get_application_info, "get_rest_api_version": application.get_rest_api_version,
- fccs_agent/agent.py:188-199 (registration)Collection of all tool definitions including this one from application.TOOL_DEFINITIONS for the MCP server.ALL_TOOL_DEFINITIONS = ( application.TOOL_DEFINITIONS + jobs.TOOL_DEFINITIONS + dimensions.TOOL_DEFINITIONS + journals.TOOL_DEFINITIONS + data.TOOL_DEFINITIONS + reports.TOOL_DEFINITIONS + consolidation.TOOL_DEFINITIONS + memo.TOOL_DEFINITIONS + feedback.TOOL_DEFINITIONS + local_data.TOOL_DEFINITIONS )
- Helper function to set the global FCCS client instance used by the tool handler.def set_client(client: FccsClient): """Set the FCCS client instance.""" global _client _client = client