random_quote

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

Get a random anime quote. Returns quote text, character name, and anime series title.

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: quote, character, anime

FieldTypeDescription
quotestringThe anime quote text
characterstringName of the character who said the quote
animestringTitle of the anime series
Full JSON Schema
{
  "type": "object",
  "properties": {
    "quote": {
      "type": "string",
      "description": "The anime quote text"
    },
    "character": {
      "type": "string",
      "description": "Name of the character who said the quote"
    },
    "anime": {
      "type": "string",
      "description": "Title of the anime series"
    }
  },
  "required": [
    "quote",
    "character",
    "anime"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026