posts

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

Fetch a paginated list of fake blog posts from DummyJSON. Supports limit, skip, and field selection via select. Returns title, body, tags, reactions, and userId.

Example call

Arguments

{
  "limit": 10,
  "skip": 0
}

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":"posts","arguments":{"limit":10,"skip":0}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
postsarrayList of posts
totalnumberTotal post count
skipnumberNumber of posts skipped
limitnumberLimit of posts returned
Full JSON Schema
{
  "type": "object",
  "properties": {
    "posts": {
      "type": "array",
      "description": "List of posts",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Post ID"
          },
          "title": {
            "type": "string",
            "description": "Post title"
          },
          "body": {
            "type": "string",
            "description": "Post body content"
          },
          "userId": {
            "type": "number",
            "description": "User ID of post author"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Post tags"
          },
          "reactions": {
            "type": "number",
            "description": "Number of reactions"
          }
        }
      }
    },
    "total": {
      "type": "number",
      "description": "Total post count"
    },
    "skip": {
      "type": "number",
      "description": "Number of posts skipped"
    },
    "limit": {
      "type": "number",
      "description": "Limit of posts 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 6, 2026