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

# Get OS Info

> Return lightweight, unauthenticated metadata about this AgentOS instance.



## OpenAPI

````yaml get /info
openapi: 3.1.0
info:
  title: Agno API Reference
  description: The all-in-one, private, secure agent platform that runs in your cloud.
  version: 2.7.2
servers: []
security: []
paths:
  /info:
    get:
      tags:
        - Core
      summary: Get OS Info
      description: >-
        Return lightweight, unauthenticated metadata about this AgentOS
        instance.
      operationId: get_info
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfoResponse'
components:
  schemas:
    InfoResponse:
      properties:
        os_id:
          type: string
          title: Os Id
          description: Unique identifier for the OS instance
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Name of the OS instance
        agno_version:
          type: string
          title: Agno Version
          description: Version of the agno framework
        agent_count:
          type: integer
          title: Agent Count
          description: Number of agents registered in the OS
          default: 0
        team_count:
          type: integer
          title: Team Count
          description: Number of teams registered in the OS
          default: 0
        workflow_count:
          type: integer
          title: Workflow Count
          description: Number of workflows registered in the OS
          default: 0
        mcp:
          $ref: '#/components/schemas/McpInfo'
          description: MCP server availability for this OS instance
        auth_mode:
          type: string
          enum:
            - none
            - security_key
            - jwt
          title: Auth Mode
          description: >-
            Authentication mode enforced on the REST/WS plane of this OS
            instance. MCP OAuth, when enabled, is described separately under
            `mcp.oauth`.
          default: none
      type: object
      required:
        - os_id
        - agno_version
      title: InfoResponse
      description: >-
        Response schema for the /info endpoint returning lightweight OS
        metadata.
    McpInfo:
      properties:
        enabled:
          type: boolean
          title: Enabled
          description: Whether the MCP server is enabled on this OS instance
          default: false
        path:
          anyOf:
            - type: string
            - type: 'null'
          title: Path
          description: Path where the MCP server is mounted, null when disabled
        oauth:
          anyOf:
            - $ref: '#/components/schemas/McpOAuthInfo'
            - type: 'null'
          description: >-
            OAuth discovery details when the MCP endpoint is OAuth-protected,
            null otherwise
      type: object
      title: McpInfo
      description: MCP server availability for the /info endpoint.
    McpOAuthInfo:
      properties:
        authorization_servers:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Authorization Servers
          description: >-
            Issuer URL(s) of the authorization server(s) protecting the MCP
            endpoint
        resource:
          anyOf:
            - type: string
            - type: 'null'
          title: Resource
          description: RFC 9728 resource URL advertised for the MCP endpoint
      type: object
      title: McpOAuthInfo
      description: >-
        OAuth discovery details for an MCP endpoint protected by
        ``AgentOS(mcp_auth=...)``.

````