Gelbooru MCP
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool has a clearly distinct purpose: build_prompt generates prompts, get_character_tags fetches character metadata, get_comments retrieves comments, get_deleted_posts accesses deleted content, search_posts searches posts, search_tags searches tags, and search_users searches users. There is no overlap in functionality, making tool selection unambiguous.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern using snake_case: build_prompt, get_character_tags, get_comments, get_deleted_posts, search_posts, search_tags, and search_users. The naming is predictable and readable throughout the set.
Tool Count5/5With 7 tools, the count is well-scoped for a Gelbooru-focused server, covering key operations like searching posts/tags/users, retrieving comments/deleted posts, and building prompts from character data. Each tool earns its place without being excessive or insufficient.
Completeness4/5The tool set provides comprehensive coverage for interacting with Gelbooru's content and metadata, including search, retrieval, and prompt generation. Minor gaps exist, such as no tools for uploading posts or managing user accounts, but these are not critical for typical agent workflows and the core operations are well-covered.
Average 3.4/5 across 7 of 7 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('Retrieve') but does not clarify if this is a read-only operation, requires authentication, has rate limits, or describes the return format (e.g., list structure, pagination). This leaves significant gaps for a tool that fetches data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence with zero wasted words, efficiently stating the tool's purpose. It is appropriately sized and front-loaded, making it easy to parse without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete for a data retrieval tool. It does not explain what the return values look like (e.g., comment format, error handling) or address behavioral aspects like permissions or limitations, leaving the agent with insufficient context for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'post_id' parameter clearly documented. The description adds no additional semantic details beyond what the schema provides, such as example values or constraints, so it meets the baseline for high schema coverage without compensating further.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Retrieve') and resource ('comments for a specific Gelbooru post'), making the purpose unambiguous. However, it does not differentiate from sibling tools like 'search_posts' or 'get_deleted_posts' in terms of scope or functionality, which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as whether it's for fetching all comments on a post versus filtered searches. It lacks any mention of prerequisites, exclusions, or sibling tool comparisons, leaving usage context implied at best.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the 'last_id' parameter for pagination-like behavior but fails to describe critical traits such as authentication needs, rate limits, error conditions, or the format/scope of returned data (e.g., are all deleted posts returned or only user-accessible ones?).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences that directly address the tool's function and a key parameter. It is front-loaded with the core purpose and avoids any redundant or unnecessary wording, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (retrieving deleted data with pagination), lack of annotations, and no output schema, the description is incomplete. It misses essential context like what 'deleted posts' entails (e.g., soft vs. hard deletion, timeframes), behavioral constraints, and output details, leaving significant gaps for agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50% (only 'last_id' has a description in the schema). The description adds meaning by explaining 'last_id' usage ('get everything deleted above that post ID'), which clarifies its pagination role. However, it doesn't address the 'limit' parameter at all, leaving half the parameters without semantic context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Retrieve') and resource ('deleted posts'), making the purpose immediately understandable. It distinguishes this tool from siblings like 'search_posts' by focusing specifically on deleted content, though it doesn't explicitly contrast with all siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'search_posts' or 'get_comments'. It mentions a parameter usage ('Pass last_id...') but offers no context about appropriate scenarios, prerequisites, or exclusions for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the search functionality but doesn't mention whether this is a read-only operation, what permissions are needed, rate limits, pagination behavior (implied by 'limit' and 'pid' parameters but not explained), or what the output format looks like. For a search tool with 4 parameters and no annotations, this leaves significant gaps in understanding how the tool behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It's appropriately sized and front-loaded, with every word contributing to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (4 parameters, no output schema, no annotations), the description is insufficient. It doesn't explain the return values, how results are structured, or behavioral aspects like pagination (implied by 'pid' but not described). For a search tool with multiple parameters and no structured output documentation, more context is needed to be complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description mentions searching by 'name or name pattern', which aligns with the 'name' and 'name_pattern' parameters in the schema. However, schema description coverage is only 50% (2 out of 4 parameters have descriptions), and the description doesn't add meaning for 'limit' or 'pid' beyond what the schema provides. It compensates slightly but not fully for the coverage gap, meeting the baseline for moderate schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: searching Gelbooru users by name or name pattern. It specifies the resource (users) and the search criteria (name/name_pattern), making the verb+resource combination explicit. However, it doesn't differentiate from sibling tools like search_posts or search_tags, which would require a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites, when-not-to-use scenarios, or comparisons with sibling tools like get_comments or get_character_tags that might involve user data. Usage is implied by the search functionality but not explicitly defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool is 'useful for' specific purposes but does not describe key behaviors such as pagination (implied by 'limit' and 'after_id'), authentication needs, rate limits, error handling, or what the return format looks like. This leaves significant gaps for a search tool with multiple parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence, followed by a concise second sentence highlighting use cases. It is appropriately sized with zero wasted words, making it easy to scan and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (8 parameters, no output schema, and no annotations), the description is incomplete. It does not explain the return values, pagination behavior, or error conditions, which are critical for a search tool. While the schema covers parameters well, the lack of behavioral and output information leaves the agent with significant uncertainty.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high at 88%, so the schema already documents most parameters well. The description adds minimal value beyond the schema by mentioning search methods ('by name, pattern, or ID') and use cases, but does not provide additional syntax, format details, or clarify interactions between parameters (e.g., how 'name' and 'name_pattern' differ in practice).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Search Gelbooru tags') and resources ('tags'), specifying it can search by name, pattern, or ID. It distinguishes from sibling tools like 'search_posts' or 'search_users' by focusing on tags, though it doesn't explicitly contrast with 'get_character_tags'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage contexts ('useful for autocomplete, tag counts, and tag type lookup'), which helps suggest when to use this tool. However, it lacks explicit guidance on when to choose this over alternatives like 'get_character_tags' or other search tools, and does not mention exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does well by disclosing key behavioral traits: it fetches from multiple pages, analyzes top-scored posts, returns categorized tags with frequency scores, and implements 24-hour disk caching. It doesn't mention rate limits, authentication needs, or error handling, but covers substantial operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded with the core functionality in the first clause. Each sentence adds value: the first explains the operation, the second details the output structure, and the third covers caching. No wasted words, though it could be slightly more streamlined.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 2 parameters, 100% schema coverage, and no output schema, the description provides good operational context but lacks output format details. It explains what the tool returns conceptually (tag buckets with frequencies) but not the exact structure. Given the complexity of tag categorization, more output specification would help, though the caching disclosure adds value.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters. The description adds minimal value beyond the schema, mentioning 'top highest-scored posts' which relates to the max_images parameter but doesn't provide additional syntax or format details. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('fetches the top highest-scored general/solo posts across multiple pages') and the resource ('character name'), with detailed output specification ('returns the most frequently occurring tags split into three semantic buckets'). It distinguishes from siblings like 'search_posts' or 'search_tags' by focusing on character-specific tag analysis rather than general searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for character tag analysis but doesn't explicitly state when to use this tool versus alternatives like 'search_tags' or 'search_posts'. It mentions caching behavior which provides some context, but lacks direct guidance on tool selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions support for 'all Gelbooru tag syntax' and lists various operators, which adds context about search capabilities. However, it does not cover important behavioral aspects like rate limits, authentication needs, error handling, or response format, leaving gaps in transparency for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with the core purpose and immediately diving into key features like tag syntax. Every sentence adds value by explaining capabilities, though it could be slightly more structured by separating syntax examples into bullet points for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a search tool with 5 parameters and no output schema, the description is partially complete. It covers search syntax and parameters well but lacks information on return values, pagination behavior, or error scenarios. Without annotations or an output schema, these gaps reduce overall completeness for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds value by explaining the broader context of tag syntax and usage examples, but it does not provide additional semantic details beyond what the schema specifies, such as interactions between parameters or edge cases.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Search Gelbooru posts') and the resources involved ('by tags, page, limit, or ID'), distinguishing it from sibling tools like search_tags or search_users. It provides concrete examples of what can be searched, making the purpose unambiguous and specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through examples of tag syntax and parameters, suggesting when to use this tool for searching posts versus other tools. However, it lacks explicit guidance on when not to use it or direct alternatives, such as distinguishing from get_deleted_posts or get_comments for specific post-related queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and discloses key behavioral traits: it describes the internal process (calls get_character_tags with caching), output assembly (tags ordered by frequency), and caching behavior ('cached after first fetch'). It lacks details on error handling or performance, but covers core operations well.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with the core purpose and following with implementation details. Every sentence adds value: the first states the output, the second explains the internal process and tag ordering. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (3 parameters, no output schema, no annotations), the description is mostly complete. It explains the tool's purpose, behavior, and output format. However, it lacks details on error cases or the exact format of the returned prompt string, leaving some gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema, only implying that character_name uses Gelbooru tags and mentioning caching for max_images. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('returns a ready-to-use image-generation prompt string') and resources ('given a character name'). It distinguishes from sibling tools by mentioning internal calls to get_character_tags and specifying the output format, which is unique among the listed siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('given a character name') and implies usage for image-generation prompts. However, it does not explicitly state when not to use it or name alternatives among siblings, such as when raw tag data from get_character_tags might be preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/citronlegacy/gelbooru-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server