post

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

Fetch a single fake blog post by numeric id from DummyJSON. Returns title, body, tags, reaction counts, and the authoring userId.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 1
}

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":"post","arguments":{"id":1}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('post', {
  "id": 1
});

Response shape

FieldTypeDescription
idnumberPost ID
titlestringPost title
bodystringPost body content
userIdnumberUser ID of post author
tagsarrayPost tags
reactionsnumberNumber of reactions
Full JSON Schema
{
  "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"
    }
  }
}

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