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

# List available tools (coming soon)

> Returns the catalog of agent-callable tools for the public MCP server. **The public server is not live yet — no tools are published**, so this returns an empty list today. This is a public path (no auth required), mirroring the internal server's `/tools/list`.




## OpenAPI

````yaml /openapi/private/specs/mcp/sagescreen-app.yml get /tools/list
openapi: 3.1.0
info:
  title: SageScreen — Public MCP Tool Catalog
  description: >
    Agent-callable tools for the **public** SageScreen MCP server at

    `https://mcp.sagescreen.app`.


    **This server is not live yet — this page is a placeholder.** No tools are

    published here today. Once `mcp.sagescreen.app` is running, this catalog
    will

    be generated deterministically from its tool registry (the same way the

    internal catalog is — see `scripts/openapi/generate_mcp_spec.py`) and this

    stub will be replaced.


    The internal MCP server (`mcp.sagescreen.net`) is documented on the gated

    internal docs site, not here.
  version: 0.0.0
servers:
  - url: https://mcp.sagescreen.app
    description: Public MCP server (not yet live)
security:
  - serviceToken: []
  - tokenQuery: []
paths:
  /tools/list:
    get:
      summary: List available tools (coming soon)
      description: >
        Returns the catalog of agent-callable tools for the public MCP server.
        **The public server is not live yet — no tools are published**, so this
        returns an empty list today. This is a public path (no auth required),
        mirroring the internal server's `/tools/list`.
      operationId: listTools
      responses:
        '200':
          description: The tool catalog (currently empty).
          content:
            application/json:
              schema:
                type: object
                properties:
                  tools:
                    type: array
                    description: >-
                      One entry per published tool (empty until the server is
                      live).
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        description:
                          type: string
                        inputSchema:
                          type: object
              example:
                tools: []
      security: []
components:
  securitySchemes:
    serviceToken:
      type: apiKey
      in: header
      name: X-Service-Token
    tokenQuery:
      type: apiKey
      in: query
      name: token

````