Health check

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://transfer.fizzybubbly.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Fizzy Bubbly Operator Transfer Wallet API MCP server": {
    "url": "https://transfer.fizzybubbly.com/mcp"
  }
}

Close
GET /system/health

Reports whether the system is healthy. Requires no authentication headers.

Responses

  • 200 application/json

    The system is healthy

    Hide response attribute Show response attribute object
    • status string

      Health status of the adapter

GET /system/health
curl \
 --request GET 'BASE_URL/system/health'
Response examples (200)
{
  "status": "OK"
}