todos

Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp

Fetch a paginated list of fake todo items from DummyJSON. Supports limit and skip. Returns todo text, completion status, and userId.

Example call

Arguments

{
  "limit": 10
}

curl

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":{"limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('todos', {
  "limit": 10
});

Response shape

FieldTypeDescription
todosarrayList of todos
totalnumberTotal todo count
skipnumberNumber of todos skipped
limitnumberLimit 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.

Regenerated from source · build July 7, 2026