Get Brand Config

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 /brand-config

Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • org_id string Required
    • version integer Required
    • config object Required

      Additional properties are allowed.

    • updated_at string | null
GET /brand-config
curl \
 --request GET 'http://api.example.com/brand-config' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "org_id": "string",
  "version": 42,
  "config": {},
  "updated_at": "string"
}