comments
Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp
Paged comments.
Example call
curl -X POST https://gateway.pipeworx.io/dummyjson/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"comments","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
comments | array | List of comments |
total | number | Total comment count |
skip | number | Number of comments skipped |
limit | number | Limit of comments returned |
Full JSON Schema
{
"type": "object",
"properties": {
"comments": {
"type": "array",
"description": "List of comments",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Comment ID"
},
"body": {
"type": "string",
"description": "Comment text"
},
"postId": {
"type": "number",
"description": "Post ID"
},
"user": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "User ID"
},
"username": {
"type": "string",
"description": "Username"
}
}
}
}
}
},
"total": {
"type": "number",
"description": "Total comment count"
},
"skip": {
"type": "number",
"description": "Number of comments skipped"
},
"limit": {
"type": "number",
"description": "Limit of comments returned"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dummyjson": {
"url": "https://gateway.pipeworx.io/dummyjson/mcp"
}
}
}
See Getting Started for client-specific install steps.