quotes
Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp
Paged quotes.
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":"quotes","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
quotes | array | List of quotes |
total | number | Total quote count |
skip | number | Number of quotes skipped |
limit | number | Limit of quotes returned |
Full JSON Schema
{
"type": "object",
"properties": {
"quotes": {
"type": "array",
"description": "List of quotes",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Quote ID"
},
"quote": {
"type": "string",
"description": "Quote text"
},
"author": {
"type": "string",
"description": "Quote author"
}
}
}
},
"total": {
"type": "number",
"description": "Total quote count"
},
"skip": {
"type": "number",
"description": "Number of quotes skipped"
},
"limit": {
"type": "number",
"description": "Limit of quotes 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.