Create a collection

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
POST /v1/collections

Create a collection

application/json

Body Required

  • name string Required

    Name of the collection

  • description string

    Description of the collection

  • emoji string

    Emoji illustrating the collection

  • privacy string

    Privacy of the collection. Defaults to Public.

    Values are Private or Public.

Responses

  • 201 application/json

    Collection has been successfully created

    Hide response attributes Show response 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.

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

POST /v1/collections
curl \
 --request POST 'https://openapi.meltingspot.io/v1/collections' \
 --header "Content-Type: application/json" \
 --data '{"name":"string","description":"string","emoji":"string","privacy":"Private"}'
Request examples
{
  "name": "string",
  "description": "string",
  "emoji": "string",
  "privacy": "Private"
}
Response examples (201)
{
  "id": "string",
  "name": "string",
  "description": "string",
  "emoji": "string",
  "privacy": "Private"
}