todos
Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp
Paged todos.
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":"todos","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
todos | array | List of todos |
total | number | Total todo count |
skip | number | Number of todos skipped |
limit | number | Limit of todos returned |
Full JSON Schema
{
"type": "object",
"properties": {
"todos": {
"type": "array",
"description": "List of todos",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Todo ID"
},
"todo": {
"type": "string",
"description": "Todo task"
},
"completed": {
"type": "boolean",
"description": "Completion status"
},
"userId": {
"type": "number",
"description": "User ID"
}
}
}
},
"total": {
"type": "number",
"description": "Total todo count"
},
"skip": {
"type": "number",
"description": "Number of todos skipped"
},
"limit": {
"type": "number",
"description": "Limit of todos 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.