Smithery

mcp.servers.list

Retrieves a paginated list of MCP servers associated with the authenticated project. Results can be filtered by name, toolkit, or authentication configuration ID. MCP servers are used to provide Model Control Protocol integration points for connecting AI assistants to your applications and services.

Remote smithery/composio

Other tools also called mcp.servers.list? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "github",
      "description": "Filter MCP servers by name (case-insensitive partial match)"
    },
    "limit": {
      "type": "number",
      "default": 10,
      "example": 10,
      "nullable": true,
      "description": "Number of items per page (default: 10)"
    },
    "page_no": {
      "type": "number",
      "default": 1,
      "example": 1,
      "nullable": true,
      "description": "Page number for pagination (1-based)"
    },
    "order_by": {
      "enum": [
        "created_at",
        "updated_at"
      ],
      "type": "string",
      "default": "updated_at",
      "example": "updated_at",
      "description": "Field to order results by"
    },
    "toolkits": {
      "type": "string",
      "description": "Comma-separated list of toolkit slugs to filter servers by"
    },
    "auth_config_ids": {
      "type": "string",
      "description": "Comma-separated list of auth config IDs to filter servers by"
    },
    "order_direction": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string",
      "default": "desc",
      "example": "desc",
      "description": "Direction of ordering"
    }
  }
}