search_user
Find users on AniList by entering a search term, specifying results per page, and navigating through paginated results using the MCP server.
Instructions
Search for users on AniList
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | No | Results per page (max 25) | |
page | No | Page number for results | |
term | Yes | Search term for finding users |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"default": 5,
"description": "Results per page (max 25)",
"type": "number"
},
"page": {
"default": 1,
"description": "Page number for results",
"type": "number"
},
"term": {
"description": "Search term for finding users",
"type": "string"
}
},
"required": [
"term"
],
"type": "object"
}