search_by_character
Pack: animequotes · Endpoint: https://gateway.pipeworx.io/animequotes/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/search_by_character for the schema, then POST the same URL with its arguments for the data.
Search for quotes by anime character name (e.g., “Naruto Uzumaki”). Returns matching quotes with character, series, and quote text.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
character | string | yes | Name 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
| Field | Type | Description |
|---|---|---|
character | string | Name of the character searched |
count | integer | Number of quotes found |
quotes | array | List 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.