Skip to main content
Glama

box_docgen_get_job_by_id_tool

Retrieve detailed information about a specific Box Doc Gen job by entering its unique ID, enabling accurate tracking and management of document generation tasks.

Instructions

Retrieve a Box Doc Gen job by its ID.

Args: client (BoxClient): Authenticated Box client. job_id (str): ID of the Doc Gen job.

Returns: dict[str, Any]: Details of the specified Doc Gen job.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes

Implementation Reference

  • The primary handler function implementing the logic for the 'box_docgen_get_job_by_id_tool'. It fetches the Box client from the context and delegates to the box_docgen_get_job_by_id helper function.
    async def box_docgen_get_job_by_id_tool(ctx: Context, job_id: str) -> dict[str, Any]: """ Retrieve a Box Doc Gen job by its ID. Args: client (BoxClient): Authenticated Box client. job_id (str): ID of the Doc Gen job. Returns: dict[str, Any]: Details of the specified Doc Gen job. """ box_client = get_box_client(ctx) return box_docgen_get_job_by_id(box_client, job_id)
  • The registration of the tool using the MCP FastMCP tool decorator within the register_doc_gen_tools function.
    mcp.tool()(box_docgen_get_job_by_id_tool)
  • Import statement bringing in the tool handler from src/tools/box_tools_docgen.py.
    box_docgen_get_job_by_id_tool,

Other Tools

Related Tools

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/box-community/mcp-server-box'

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