get_advice

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

Get a specific advice slip by its numeric ID (e.g., “42”). Returns the full advice text.

Parameters

NameTypeRequiredDescription
idnumberyesThe numeric ID of the advice slip to retrieve.

Example call

Arguments

{
  "id": 42
}

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "id": 117
}

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