Smithery

mcp.servers.instances.list

Retrieves a paginated list of user instances (user IDs) associated with a specific Model Control Protocol (MCP) server. This endpoint supports pagination to handle servers with many instances.

Remote smithery/composio

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

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "default": 20,
      "example": 20,
      "nullable": true,
      "description": "Number of items per page (default: 20)"
    },
    "search": {
      "type": "string",
      "example": "user_123",
      "description": "Search instances by user ID/instance ID"
    },
    "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"
    },
    "serverId": {
      "type": "string",
      "example": "550e8400-e29b-41d4-a716-446655440000",
      "description": "The ID of the MCP server"
    },
    "order_direction": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string",
      "default": "desc",
      "example": "desc",
      "description": "Direction of ordering"
    }
  }
}