list_jobs
Retrieve recent job listings from Oracle EPM Cloud Financial Consolidation and Close (FCCS) applications to monitor processing status and track system activities.
Instructions
List recent jobs in the FCCS application / Listar jobs recentes na aplicacao FCCS
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- fccs_agent/tools/jobs.py:21-28 (handler)The core handler function for the 'list_jobs' MCP tool. It asynchronously calls the FCCS client to retrieve recent jobs and wraps the result in a standard response format.async def list_jobs() -> dict[str, Any]: """List recent jobs in the FCCS application / Listar jobs recentes na aplicacao FCCS. Returns: dict: List of recent jobs with status information. """ jobs = await _client.list_jobs(_app_name) return {"status": "success", "data": jobs}
- fccs_agent/tools/jobs.py:87-94 (schema)The input schema definition for the 'list_jobs' tool, specifying no required parameters as an empty object.{ "name": "list_jobs", "description": "List recent jobs in the FCCS application / Listar jobs recentes na aplicacao FCCS", "inputSchema": { "type": "object", "properties": {}, }, },
- fccs_agent/agent.py:143-143 (registration)Registration of the 'list_jobs' tool handler in the central TOOL_HANDLERS dictionary used by the agent to dispatch tool calls."list_jobs": jobs.list_jobs,
- fccs_agent/agent.py:190-190 (registration)Inclusion of job tools' schema definitions (including list_jobs) into the complete ALL_TOOL_DEFINITIONS list exposed to the MCP server.jobs.TOOL_DEFINITIONS +