Danbooru Tags

get_character_tags

**[REAL-TIME API]** Analyze frequently used tags for a character by querying Danbooru API directly in real-time with advanced filtering options. Use this when: - You need the LATEST, most up-to-date tag statistics - The character data is NOT yet saved in the database - You want quick exploration without saving data - You need filtered analysis (clothing only, specific categories, include/exclude tags) For analyzing SAVED data, use Turso SQL tools instead. For bulk data collection to save, use 'collect_and_save' from Danbooru Turso Sync.

Remote gamzadongza/danbooru-tags-mcp

Other tools also called get_character_tags? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "top_n": {
      "type": "number",
      "default": 50,
      "description": "Number of top tags to return (default: 50)"
    },
    "category": {
      "enum": [
        "general",
        "artist",
        "copyright",
        "character",
        "meta"
      ],
      "type": "string",
      "description": "Filter by tag category"
    },
    "num_posts": {
      "type": "number",
      "default": 100,
      "description": "Number of posts to analyze (default: 100, no limit)"
    },
    "exclude_tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags to exclude (e.g., [\"game_cg\", \"comic\"])"
    },
    "include_tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags that must be included (e.g., [\"tachi-e\", \"official_art\"])"
    },
    "character_tag": {
      "type": "string",
      "description": "Character tag to search (e.g., hatsune_miku, crimson_avenger_(elsword))"
    },
    "clothing_only": {
      "type": "boolean",
      "default": false,
      "description": "Return only clothing-related tags"
    }
  }
}