search_by_character

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

Search for quotes by anime character name (e.g., “Naruto Uzumaki”). Returns matching quotes with character, series, and quote text.

Parameters

NameTypeRequiredDescription
characterstringyesName of the anime character (e.g., “Naruto Uzumaki”, “Levi Ackerman”)

Example call

Arguments

{
  "character": "Naruto Uzumaki"
}

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":"search_by_character","arguments":{"character":"Naruto Uzumaki"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_by_character', {
  "character": "Naruto Uzumaki"
});

More examples

{
  "character": "Levi Ackerman"
}

Response shape

Always returns: character, count, quotes

FieldTypeDescription
characterstringName of the character searched
countintegerNumber of quotes found
quotesarrayList of quotes by the character
Full JSON Schema
{
  "type": "object",
  "properties": {
    "character": {
      "type": "string",
      "description": "Name of the character searched"
    },
    "count": {
      "type": "integer",
      "description": "Number of quotes found"
    },
    "quotes": {
      "type": "array",
      "description": "List of quotes by the character",
      "items": {
        "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"
        ]
      }
    }
  },
  "required": [
    "character",
    "count",
    "quotes"
  ]
}

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