posts

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

Paged posts.

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

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 May 21, 2026