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
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | The 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
| Field | Type | Description |
|---|---|---|
id | number | Numeric ID of the advice slip |
advice | string | The 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.