Skip to main content
Glama
ivossos
by ivossos

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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": {}, }, },
  • 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,
  • 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

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