Get job logs

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/hlubek/doc/prunner/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Prunner MCP server": {
  "url": "https://bump.sh/hlubek/doc/prunner/mcp"
}
Close
GET /job/logs

Task output for the given job and task will be fetched and returned for STDOUT / STDERR.

Query parameters

  • id string Required

    Job id

  • task string Required

    Task name

Responses

  • 400 application/json
    Hide response attribute Show response attribute object
    • error string

      Error message

  • 404
  • 500
  • default application/json
    Hide response attributes Show response attributes object
    • stderr string

      STDERR output of task

    • stdout string

      STDOUT output of task

GET /job/logs
curl \
 --request GET 'http://localhost:8080/job/logs?id=52a5cb79-7556-4c52-8e6f-dd6aaf1bc4c8&task=my_task'
Response examples (400)
{
  "error": "string"
}
Response examples (default)
{
  "stderr": "string",
  "stdout": "string"
}