Skip to main content
GET
/
health
Health Check
curl --request GET \
  --url https://api.altostrat.io/health
{
  "status": "ok",
  "server": "Altostrat MCP Server",
  "version": "1.0.0",
  "capabilities": {
    "prompts": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "tools": {
      "listChanged": false
    }
  }
}

Response

200 - application/json

The service is healthy and operating correctly.

status
string

The operational status of the service.

Example:

"ok"

server
string

The name of the MCP server.

Example:

"Altostrat MCP Server"

version
string

The current version of the running application.

Example:

"1.0.0"

capabilities
object

An object detailing the MCP capabilities supported by this server.

Example:
{
"prompts": { "listChanged": false },
"resources": { "subscribe": false, "listChanged": false },
"tools": { "listChanged": false }
}