Link a group

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/channels/{channelId}/groups

Link a group

Path parameters

  • channelId string Required

    The id of the channel

application/json

Body Required

  • groupId string Required

    The id of the group to link

Responses

  • 204

    Group linked successfully

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Channel not found

POST /v1/channels/{channelId}/groups
curl \
 --request POST 'https://openapi.meltingspot.io/v1/channels/{channelId}/groups' \
 --header "Content-Type: application/json" \
 --data '{"groupId":"string"}'
Request examples
{
  "groupId": "string"
}