List child pages Run in API Explorer

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://developers.bump.sh/doc/portal/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Bump.sh Portal MCP server": {
  "url": "https://developers.bump.sh/doc/portal/mcp"
}
Close
GET /list

List all child pages under a given URL in the portal hierarchy.

Headers

  • Portal-Url string Required

    A url of public portal:

    • E.g. for a Documentation https://developers.bump.sh
    • E.g. for a Hub https://www.elastic.co/docs/api
    • E.g. for an Organization https://apidocs.lastminute.com/

Query parameters

  • url string

    Use a target page URL returned by either the GET /search or GET /list operations.

Responses

  • 200 application/json

    Returns a summary of each child page (URL, title, type, description) without full content.

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • type string

        Values are hub, api, guide, group, operation, request, response, model, message, binding, or property.

      • url string

        Canonical URL of the page

      • title string
      • description string

        Description of the page limited to the first 180 characters

  • 404

    The resource was not found

GET /list
curl \
 --request GET 'https://bump.sh/api/portal/v1/list' \
 --header "Portal-Url: https://developers.bump.sh/doc/workspace/"
Response examples (200)
{
  "data": [
    {
      "type": "hub",
      "url": "string",
      "title": "string",
      "description": "string"
    }
  ]
}