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

# List all available tools

> Get a paginated list of all available tools in the marketplace.



## OpenAPI

````yaml /api-reference/openapi.yaml get /tools
openapi: 3.0.0
info:
  title: Agent-CoreX API
  description: Dynamic tool retrieval and execution for AI agents using MCP servers
  version: 1.0.0
  contact:
    name: Agent-CoreX Support
    email: support@agent-corex.com
    url: https://github.com/anthropics/agent-corex
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.agent-corex.com/v1
    description: Production API
  - url: https://staging-api.agent-corex.com/v1
    description: Staging API
  - url: http://localhost:3000/v1
    description: Local development
security:
  - bearerAuth: []
  - apiKey: []
tags:
  - name: Tools
    description: Tool discovery and execution
  - name: Servers
    description: MCP server management
  - name: System
    description: System and health endpoints
externalDocs:
  description: Full documentation
  url: https://docs.agent-corex.com
paths:
  /tools:
    get:
      tags:
        - Tools
      summary: List all available tools
      description: Get a paginated list of all available tools in the marketplace.
      operationId: listTools
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
            maximum: 100
          description: Number of tools to return
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
          description: Pagination offset
        - name: server
          in: query
          schema:
            type: string
          description: Filter by MCP server name
        - name: category
          in: query
          schema:
            type: string
          description: Filter by tool category
      responses:
        '200':
          description: Tools listed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListToolsResponse'
components:
  schemas:
    ListToolsResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: object
          properties:
            items:
              type: array
              items:
                $ref: '#/components/schemas/Tool'
            pagination:
              type: object
              properties:
                limit:
                  type: integer
                offset:
                  type: integer
                total:
                  type: integer
                has_more:
                  type: boolean
        meta:
          $ref: '#/components/schemas/ResponseMeta'
    Tool:
      type: object
      properties:
        name:
          type: string
          description: Unique tool identifier
        server:
          type: string
          description: MCP server that provides this tool
        score:
          type: number
          format: float
          description: Relevance score (0.0 to 1.0)
          minimum: 0
          maximum: 1
        description:
          type: string
          description: Human-readable tool description
        category:
          type: string
          description: Tool category
        inputSchema:
          type: object
          description: JSON Schema for tool input parameters
        outputSchema:
          type: object
          description: JSON Schema for tool output
        tags:
          type: array
          items:
            type: string
          description: Tool tags for classification
    ResponseMeta:
      type: object
      properties:
        request_id:
          type: string
          description: Unique request identifier
        timestamp:
          type: string
          format: date-time
          description: Request timestamp
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained from dashboard
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: API key in format "Bearer YOUR_API_KEY"

````