search_by_anime

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

Search for quotes from a specific anime series by title (e.g., “Attack on Titan”). Returns matching quotes with character and series info.

Parameters

NameTypeRequiredDescription
animestringyesName of the anime series (e.g., “Naruto”, “Attack on Titan”)

Example call

Arguments

{
  "anime": "Attack on Titan"
}

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_anime","arguments":{"anime":"Attack on Titan"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_by_anime', {
  "anime": "Attack on Titan"
});

More examples

{
  "anime": "Naruto"
}

Response shape

Always returns: anime, count, quotes

FieldTypeDescription
animestringName of the anime series searched
countintegerNumber of quotes found
quotesarrayList of quotes from the anime
Full JSON Schema
{
  "type": "object",
  "properties": {
    "anime": {
      "type": "string",
      "description": "Name of the anime series searched"
    },
    "count": {
      "type": "integer",
      "description": "Number of quotes found"
    },
    "quotes": {
      "type": "array",
      "description": "List of quotes from the anime",
      "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": [
    "anime",
    "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