WebSim Explorer

list_project_comments

Get comments on a WebSim project. Perfect for 'Show me comments on project [ID]' or 'What are people saying about [project]?' questions. Supports pagination and different sorting orders.

Remote gigachadtrey/websimm

Other tools also called list_project_comments? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the WebSim project"
    },
    "last": {
      "type": "number",
      "maximum": 100,
      "minimum": 1,
      "description": "Number of last comments to return"
    },
    "after": {
      "type": "string",
      "description": "Get comments after this comment ID"
    },
    "first": {
      "type": "number",
      "maximum": 100,
      "minimum": 1,
      "description": "Number of first comments to return"
    },
    "before": {
      "type": "string",
      "description": "Get comments before this comment ID"
    },
    "sort_by": {
      "enum": [
        "created",
        "likes"
      ],
      "type": "string",
      "default": "created",
      "description": "Sort comments by"
    },
    "sort_order": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string",
      "default": "desc",
      "description": "Sort order"
    }
  }
}