random_advice

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

Get a random piece of advice. Returns the advice text and slip ID for reference or follow-up queries.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/advice/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"random_advice","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('random_advice', {});

Response shape

Always returns: id, advice

FieldTypeDescription
idnumberNumeric ID of the advice slip
advicestringThe advice text
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Numeric ID of the advice slip"
    },
    "advice": {
      "type": "string",
      "description": "The advice text"
    }
  },
  "required": [
    "id",
    "advice"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "advice": {
      "url": "https://gateway.pipeworx.io/advice/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026