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

# list MCP servers

> Search the third-party MCP server directory. Returns `{ servers, total, limit, offset }`. Public, no auth. Note this is the directory — the JSON-RPC endpoint is POST /mcp.



## OpenAPI

````yaml /openapi.json get /mcp-servers
openapi: 3.1.0
info:
  title: fetchbean API
  version: v1
  description: >-
    One key for web search, page reads, weather, social data, and raw provider
    access.
servers:
  - url: https://api.fetchbean.com
security:
  - apiKeyAuth: []
paths:
  /mcp-servers:
    get:
      tags:
        - Directory
      summary: list MCP servers
      description: >-
        Search the third-party MCP server directory. Returns `{ servers, total,
        limit, offset }`. Public, no auth. Note this is the directory — the
        JSON-RPC endpoint is POST /mcp.
      parameters:
        - name: q
          in: query
          schema:
            type: string
          description: Free-text search over name and description.
        - name: category
          in: query
          schema:
            type: string
          description: Narrow to one directory category.
        - name: tag
          in: query
          schema:
            type: string
          description: Narrow to one tag.
        - name: limit
          in: query
          schema:
            type: integer
          description: 1–100 (default 50).
        - name: offset
          in: query
          schema:
            type: integer
          description: Pagination offset (default 0).
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
      security: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Your fetchbean API key (fb_…). Keys are not accepted through
        Authorization.

````