post

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

Single post.

Parameters

NameTypeRequiredDescription
idnumberyes

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

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