> ## Documentation Index
> Fetch the complete documentation index at: https://foreverbetter.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent manifest

> Agent discovery manifest: base URL, auth requirements, available endpoints, and MCP tool list, so an autonomous agent can self-configure.



## OpenAPI

````yaml https://api.foreverbetter.xyz/openapi.json get /.well-known/health-agent.json
openapi: 3.1.0
info:
  title: ForeverBetter API
  version: 0.4.8
  description: >-
    ForeverBetter API and MCP-compatible service for genetics, biomarkers,
    wearables, lab locator handoffs, and dashboard specs.
servers:
  - url: https://api.foreverbetter.xyz
security:
  - bearerAuth: []
paths:
  /.well-known/health-agent.json:
    get:
      summary: Agent manifest
      description: >-
        Agent discovery manifest: base URL, auth requirements, available
        endpoints, and MCP tool list, so an autonomous agent can self-configure.
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````