Get Collections

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://help-api.meltingspot.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "API MCP server": {
    "url": "https://help-api.meltingspot.io/mcp"
  }
}

Close
GET /v1/collections

Get Collections

Query parameters

  • page integer | null

    The page number in a paginated set of results

  • limit integer | null

    The limit of results to be returned per page

  • name[eq] string

    Search Collection with a specific name

  • name[contains] string

    Search Collections that contains this in the name

  • privacy[eq] string

    Search Collection with a specific privacy

    Values are Private or Public.

  • privacy[in] array[string]

    Search Collection which have the following privacy

    Values are Private or Public.

Responses

  • 200 application/json

    Collections returned successfully

    Hide response attributes Show response attributes object
    • items array[object] Required

      The items found

      Hide items attributes Show items attributes object
      • id string Required

        The id of the collection.

      • name string Required

        The name of the collection.

      • description string Required

        The description of the collection.

      • emoji string | null Required

        The emoji illustrating the collection. Null when the collection has none.

      • privacy string Required

        The privacy of the collection.

        Values are Private or Public.

    • total integer Required

      The total number of items found

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

GET /v1/collections
curl \
 --request GET 'https://openapi.meltingspot.io/v1/collections'
Response examples (200)
{
  "items": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "emoji": "string",
      "privacy": "Private"
    }
  ],
  "total": 42
}