List Catalogs

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://docs.thankly.ai/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Thankly MCP server": {
    "url": "https://docs.thankly.ai/mcp"
  }
}

Close
GET /catalogs

List all available catalogs.

Returns a list of catalogs with their product counts and categories.

Responses

  • 200 application/json

    Successful Response

    Hide response attribute Show response attribute object
    • catalogs array[object] Required
      Hide catalogs attributes Show catalogs attributes object

      Full catalog details.

      • id string Required
      • slug string Required
      • name string Required
      • description string | null
      • productCount integer Required

        Total number of products

      • categories array[object]
        Hide categories attributes Show categories attributes object

        Category with product count.

        • id string Required
        • name string Required
        • productCount integer Required

          Number of products in this category

      • lastUpdated string(date-time) Required
GET /catalogs
curl \
 --request GET 'http://api.example.com/catalogs'
Response examples (200)
{
  "catalogs": [
    {
      "id": "string",
      "slug": "string",
      "name": "string",
      "description": "string",
      "productCount": 42,
      "categories": [
        {
          "id": "string",
          "name": "string",
          "productCount": 42
        }
      ],
      "lastUpdated": "2026-05-04T09:42:00Z"
    }
  ]
}