Get the status of the server

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://apidocs.fincalc.co.uk/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"FinCalc API MCP server": {
  "url": "https://apidocs.fincalc.co.uk/mcp"
}
Close
GET /api/status

This endpoint allows you to get the status of the server.

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • success boolean

      Default value is true.

    • data object
GET /api/status
curl \
 --request GET 'https://api.fincalc.co.uk/api/status'
Response examples (200)
{
  "success": true,
  "data": {}
}