Create a tag

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/tags

Create a tag

application/json

Body Required

  • name string Required

    Name of the tag

  • emoji string

    Emoji of the tag

Responses

  • 201 application/json

    The tag has been successfully created

    Hide response attributes Show response attributes object
    • id string Required

      The id of the tag.

    • name string Required

      The name of the tag.

    • emoji string

      The emoji of the tag

    • order integer Required

      The order of the tag.

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

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