Sponsored by Deepsite.site

Gelbooru Mcp

Created By
citronlegacy14 days ago
A Python MCP server that wraps the Gelbooru API. Connect it to any MCP-compatible client (Claude Desktop, Cursor, etc.) to search posts, look up tags, and generate Stable Diffusion prompts from real character appearance data — all directly from your AI assistant.
Overview

gelbooru-mcp

Python License: MIT MCP

Gelbooru MCP server rating

A Python MCP server that wraps the Gelbooru API. Connect it to any MCP-compatible client (Claude Desktop, Cursor, etc.) to search posts, look up tags, and generate Stable Diffusion prompts from real character appearance data — all directly from your AI assistant.


✨ Features

🎨 Stable Diffusion Prompt Generation

  • Character Prompts: Auto-generate accurate SD prompts from real Gelbooru tag frequency data
  • Appearance Breakdown: Separate eye, hair, and clothing/accessory tag categories
  • Smart Caching: Results cached for 24 hours — no repeated API hits

🔍 Post & Tag Search

  • Advanced Filtering: Search by tags, score, resolution, rating, uploader, pool, and more
  • Full Tag Syntax: AND, OR, wildcard, exclusion, meta-tags, sorting, and pagination
  • Tag Lookup: Check tag existence, post counts, and discover related tags

👥 Community Tools

  • User Search: Find Gelbooru user accounts by name or wildcard pattern
  • Comments: Retrieve post comments for any post ID
  • Deleted Posts: Track removed content above a given post ID

📦 Installation

Prerequisites

  • Python 3.10+
  • git

Quick Start

  1. Clone the repository:
git clone https://github.com/citronlegacy/gelbooru-mcp.git
cd gelbooru-mcp
  1. Run the installer:
chmod +x install.sh && ./install.sh
# or without chmod:
bash install.sh
  1. Or install manually:
pip install mcp

Note: Add .gelbooru_cache/ and .venv/ to your .gitignore to avoid committing cached data or your virtual environment.

Getting a Gelbooru API Key

  1. Visit your Gelbooru account options page
  2. Log in to your Gelbooru account
  3. Copy your API Key and User ID
  4. Set them as environment variables (see below)

🔑 Authentication

API credentials are optional but strongly recommended — unauthenticated requests are throttled and limited to 2 tags per query. Gelbooru Patreon supporters receive unlimited requests.

export GELBOORU_API_KEY="your_api_key"
export GELBOORU_USER_ID="your_user_id"

Both values are on your Gelbooru account options page. Without them the server still works but requests may be throttled. Patreon supporters of Gelbooru are not rate-limited.


▶️ Running the Server

python gelbooru_mcp.py
# or via the venv created by install.sh:
.venv/bin/python gelbooru_mcp.py

⚙️ Configuration

Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "gelbooru-mcp": {
      "command": "/absolute/path/to/.venv/bin/python",
      "args": ["/absolute/path/to/gelbooru_mcp.py"],
      "env": {
        "GELBOORU_API_KEY": "your_api_key",
        "GELBOORU_USER_ID": "your_user_id"
      }
    }
  }
}

Other MCP Clients

Configure according to your client's documentation:

  • Command: /absolute/path/to/.venv/bin/python
  • Args: /absolute/path/to/gelbooru_mcp.py
  • Transport: stdio

💡 Usage Examples

Generate a Stable Diffusion prompt for a character

"Build me a Stable Diffusion prompt for Rem from Re:Zero."

The LLM calls build_prompt with character_name: "rem_(re:zero)" and gets back:

rem (re:zero), blue eyes, blue hair, short hair, maid, maid headdress, maid apron, ...

Find high-quality wallpaper images

"Show me the top-rated scenery images that are at least 1920px wide."

The LLM calls search_posts with tags: "scenery width:>=1920 sort:score:desc".


Look up how popular a tag is

"How many posts does the tag 'misty_(pokemon)' have on Gelbooru?"

The LLM calls search_tags with name: "misty_(pokemon)" and reads the count field.


🛠️ Available Tools

ToolDescriptionKey Parameters
build_promptGenerate a Stable Diffusion prompt string for a charactercharacter_name, max_images, include_other
get_character_tagsGet structured tag breakdown with frequency countscharacter_name, max_images
search_postsSearch posts with full tag syntax supporttags, limit, pid, id
search_tagsLook up tags by name, pattern, or IDname, name_pattern, orderby, limit
search_usersFind Gelbooru user accountsname, name_pattern, limit
get_commentsRetrieve comments for a postpost_id
get_deleted_postsList recently deleted postslast_id, limit

📖 Tools Reference

build_prompt

Fetches the most-tagged rating:general solo posts for a character and assembles a ready-to-paste Stable Diffusion prompt string. Internally calls get_character_tags so results are cached after the first fetch.

Parameters

ParameterTypeRequiredDefaultDescription
character_namestringGelbooru character tag, e.g. misty_(pokemon)
max_imagesinteger300Posts to analyse. More = slower first fetch, more reliable tags. Cached afterward.
include_otherbooleantrueInclude non-eye/hair tags (clothing, accessories, etc.). Set to false for appearance-only prompts.

Example response

{
  "prompt": {
    "character": "misty (pokemon)",
    "posts_analysed": 284,
    "cache_hit": false,
    "prompt_string": "misty (pokemon), green eyes, orange hair, side ponytail, gym leader, shorts, suspenders",
    "tags": {
      "eye":   ["green eyes"],
      "hair":  ["orange hair", "side ponytail"],
      "other": ["gym leader", "shorts", "suspenders"]
    }
  }
}

LLM Tip: Always use Gelbooru's underscore format (misty_(pokemon) not Misty (Pokemon)). If unsure of the exact tag, call search_tags with name_pattern first.


get_character_tags

Same data source as build_prompt but returns the full structured tag breakdown with frequency counts. Use this when you want to inspect, filter, or reformat tags yourself.

Parameters

ParameterTypeRequiredDefaultDescription
character_namestringGelbooru character tag, e.g. rem_(re:zero)
max_imagesinteger300Number of top-scored posts to analyse.

Example response

{
  "character_tags": {
    "name": "rem_(re:zero)",
    "posts_analysed": 300,
    "cache_hit": true,
    "eye": [
      { "tag": "blue eyes", "count": 261, "frequency": 0.87 }
    ],
    "hair": [
      { "tag": "blue hair",  "count": 274, "frequency": 0.913 },
      { "tag": "short hair", "count": 198, "frequency": 0.66  }
    ],
    "other": [
      { "tag": "maid", "count": 231, "frequency": 0.77 }
    ]
  }
}

frequency is the fraction of analysed posts that had that tag (0.0–1.0). Tags near 1.0 are near-universal; tags below 0.3 are situational.

Cache environment variables:

Env varDefaultDescription
GELBOORU_CACHE_DIR.gelbooru_cache/ next to scriptCustom cache folder path
GELBOORU_CACHE_TTL86400 (24 hours)Cache lifetime in seconds

search_posts

Search Gelbooru posts using any tag combination. Supports the full Gelbooru tag syntax including meta-tags, sorting, and filtering.

Parameters

ParameterTypeRequiredDefaultDescription
tagsstringTag query string (see Tag Syntax Reference below)
limitinteger20Posts to return (max 100)
pidinteger0Page number (0-indexed) for pagination
idintegerFetch a single post by its Gelbooru post ID
cidintegerFetch posts by change ID (Unix timestamp)

get_deleted_posts

Retrieve posts that have been deleted from Gelbooru, optionally filtered to those above a given post ID.

Parameters

ParameterTypeRequiredDefaultDescription
last_idintegerOnly return deleted posts whose ID is above this value. Useful for syncing a local mirror.
limitinteger20Posts to return (max 100)

search_tags

Look up Gelbooru tags by name, wildcard pattern, or ID. Useful for checking tag existence, finding post counts, discovering related tags, or autocomplete.

Parameters

ParameterTypeRequiredDefaultDescription
namestringExact tag name, e.g. blue_hair
namesstringSpace-separated list of exact tag names, e.g. cat_ears dog_ears fox_ears
name_patternstringSQL LIKE wildcard: % = any chars, _ = one char. E.g. %schoolgirl%
idintegerLook up a tag by its database ID
after_idintegerReturn tags with ID greater than this value
limitinteger20Tags to return (max 100)
orderstringASC or DESC
orderbystringSort field: date, count, or name

LLM Tip: If the user gives a character name in natural language (e.g. "Misty from Pokemon"), use name_pattern with %misty%_(pokemon)% to find the correct Gelbooru tag before calling get_character_tags or build_prompt.


search_users

Search for Gelbooru user accounts by name.

Parameters

ParameterTypeRequiredDefaultDescription
namestringExact username
name_patternstringSQL LIKE wildcard username search
limitinteger20Results to return (max 100)
pidinteger0Page number for pagination

get_comments

Retrieve comments on a specific post.

Parameters

ParameterTypeRequiredDefaultDescription
post_idintegerThe Gelbooru post ID to fetch comments for

🏷️ Tag Syntax Reference

SyntaxMeaning
tag1 tag2Posts with both tag1 AND tag2
{tag1 ~ tag2 ~ tag3}Posts with tag1 OR tag2 OR tag3
-tag1Exclude posts with tag1
*tag1Wildcard prefix (tags ending with tag1)
tag1*Wildcard suffix (tags starting with tag1)
rating:generalFilter by rating: general, questionable, or explicit
-rating:explicitExclude a rating
score:>=50Score at least 50
width:>=1920Image width ≥ 1920px
height:>1080Image height > 1080px
user:bobUploaded by user "bob"
fav:1Posts favourited by user with ID 1
pool:2Posts in pool ID 2
sort:score:descSort by score (desc or asc)
sort:randomRandom order on every request
sort:random:1234Random order with a fixed seed (0–10000)
sort:updated:descSort by most recently updated

🤖 Notes for LLMs

  • Character tag format: Gelbooru uses character_(series) format with underscores. Always convert natural language names before passing to tools — "Rem from Re:Zero" → rem_(re:zero), "Saber from Fate" → saber_(fate).
  • Workflow for character prompts: If the exact tag is unknown, call search_tags with name_pattern first → confirm the tag exists and has posts → then call build_prompt.
  • Pagination: search_posts returns max 100 results per call. Use pid to walk through pages. get_character_tags and build_prompt handle their own pagination internally.
  • Cache: get_character_tags and build_prompt cache results for 24 hours. The cache_hit field in the response indicates whether live or cached data was used.
  • Ratings: Gelbooru uses general, questionable, and explicit. get_character_tags and build_prompt always filter to rating:general for cleaner, more representative character data.

⚠️ Known Limitations

  • Tag search limit: Gelbooru enforces a maximum of 2 tags per unauthenticated search query. For complex multi-tag queries, set GELBOORU_API_KEY and GELBOORU_USER_ID.
  • get_character_tags accuracy: Results depend on how consistently a character is tagged on Gelbooru. Niche or recently added characters may have fewer posts and less reliable frequency data.
  • rating:general only for character tools: build_prompt and get_character_tags intentionally restrict to rating:general for clean, representative appearance data. Explicit posts are excluded by design.
  • Cache is per (character_name, max_images) pair: Changing max_images busts the cache for that character.

🐛 Troubleshooting

Server won't start:

  • Ensure Python 3.10+ is installed: python --version
  • Verify the virtual environment was created: ls .venv/
  • Re-run the installer: bash install.sh

API rate limiting / throttled requests:

  • Set GELBOORU_API_KEY and GELBOORU_USER_ID environment variables
  • Gelbooru Patreon supporters receive unlimited requests

Character not found / empty results:

  • Confirm the tag exists with search_tags using name_pattern
  • Check spelling — Gelbooru uses character_(series) underscore format
  • Some characters may have very few consistently tagged posts

Tag syntax errors / too many tags:

  • Unauthenticated users are limited to 2 tags per query
  • Authenticate with API credentials for complex multi-tag searches

🤝 Contributing

Pull requests are welcome! If you find a character tag being miscategorised (e.g. a hair style tag missing from the hair bucket, or a noise tag slipping through the purge filter), please open an issue or PR with the tag and which list it belongs in.

Development Setup

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

📄 License

MIT License — see LICENSE for details.


Server Config

{
  "mcpServers": {
    "gelbooru-mcp": {
      "command": "/absolute/path/to/.venv/bin/python",
      "args": [
        "/absolute/path/to/gelbooru_mcp.py"
      ],
      "env": {
        "GELBOORU_API_KEY": "your_api_key",
        "GELBOORU_USER_ID": "your_user_id"
      }
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
Serper MCP ServerA Serper MCP Server
WindsurfThe new purpose-built IDE to harness magic
CursorThe AI Code Editor
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Playwright McpPlaywright MCP server
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Amap Maps高德地图官方 MCP Server
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
DeepChatYour AI Partner on Desktop
ChatWiseThe second fastest AI chatbot™
Tavily Mcp