aesthetics-wiki-mcp
Server Quality Checklist
Latest release: v0.2.0
- Disambiguation5/5
Each tool has a clearly distinct purpose with no overlap: get_aesthetic retrieves cleaned page content, get_aesthetic_images fetches images, list_related finds linked pages, random_aesthetic provides random pages, and search_aesthetic performs free-text searches. The descriptions reinforce these unique functions, making misselection unlikely.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern with 'aesthetic' as the common noun root: get_aesthetic, get_aesthetic_images, list_related, random_aesthetic, and search_aesthetic. This predictable naming scheme enhances readability and usability for agents.
Tool Count5/5With 5 tools, the server is well-scoped for its purpose of interacting with an aesthetics wiki. Each tool earns its place by covering distinct aspects like content retrieval, image fetching, discovery, and search, avoiding bloat or thin coverage.
Completeness4/5The tool set provides comprehensive coverage for browsing and exploring an aesthetics wiki, including fetching content, images, related pages, random discovery, and search. A minor gap exists in lacking explicit CRUD operations (e.g., create or update pages), but this is reasonable given the wiki's likely read-only nature, and agents can still accomplish core tasks effectively.
Average 4.4/5 across 5 of 5 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- 0 of 1 community issues answered or closed 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 is passing
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
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=false, and openWorldHint=true, covering safety and data behavior. The description adds value by specifying the source ('wiki') and the random nature of retrieval, which isn't captured in annotations. It doesn't contradict annotations, as 'Get' aligns with read-only, and it provides useful context beyond structured 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 front-loaded with the core purpose, followed by structured sections for Args and Returns. Every sentence earns its place: the opening line sets context, and the bullet points efficiently document parameters and output without redundancy. It's appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 parameter, no nested objects), the description is complete. It explains the purpose, parameter semantics, and return format. With annotations covering behavioral traits and an output schema implied by the Returns section, no additional details are needed for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries the burden. It clearly explains the 'count' parameter: 'Number of random pages (1-10). Default 1.', adding meaning beyond the schema's basic type and title. This compensates well for the low coverage, though it doesn't detail other potential parameters if they existed.
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: 'Get one or more random aesthetics from the wiki — great for inspiration.' This specifies the verb ('Get'), resource ('aesthetics'), and source ('wiki'), with a helpful usage context ('inspiration'). However, it doesn't explicitly differentiate from sibling tools like 'get_aesthetic' or 'search_aesthetic', which likely retrieve specific rather than random aesthetics.
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 inspiration and randomness, but doesn't explicitly state when to use this tool versus alternatives like 'get_aesthetic' or 'search_aesthetic'. It provides some context ('great for inspiration') but lacks clear guidance on exclusions or direct comparisons to sibling tools.
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?
Annotations already declare readOnlyHint=true (safe read), idempotentHint=true (repeatable), and openWorldHint=true (dynamic data). The description adds value by specifying the search scope ('pages matching a query') and return format details (dict with results list structure), which are not covered by annotations. However, it does not disclose additional behavioral traits like rate limits, authentication needs, or pagination, so a 3 is appropriate.
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 structured sections for Args and Returns. Every sentence adds value: the purpose statement, parameter explanations with examples, and return format details. There is no wasted text, and the structure enhances readability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (2 parameters, simple search), rich annotations (readOnly, idempotent, openWorld), and the presence of an output schema (implied by Returns section), the description is complete enough. It covers purpose, parameters, and return values adequately without needing to explain annotations or output schema details, making it sufficient for the context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It effectively adds meaning: it explains 'query' as free-text search with examples ('cottagecore', 'dark academia', 'y2k') and 'limit' as max results with range (1-50) and default (10), which are not in the schema. This covers both parameters well, but lacks details on query syntax or error handling, preventing a perfect 5.
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'), target resource ('the Aesthetics Wiki for pages'), and scope ('matching a query'), distinguishing it from siblings like get_aesthetic (likely retrieves a specific page), get_aesthetic_images (likely fetches images), list_related (likely lists related pages), and random_aesthetic (likely returns a random page). The verb+resource+scope combination is precise and differentiated.
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 context (searching for pages based on a query) but does not explicitly state when to use this tool versus alternatives like get_aesthetic (for specific pages) or random_aesthetic (for random selection). It provides clear parameter guidance (e.g., query examples, limit range) but lacks explicit when/when-not statements or named alternatives, keeping it at a 4.
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?
Annotations already provide readOnlyHint=true, idempotentHint=true, and openWorldHint=true, covering safety and idempotency. The description adds valuable context beyond annotations: it specifies that content is 'cleaned' (behavioral trait), mentions case-insensitivity and underscore/space handling, and describes the return structure. No contradiction with annotations exists.
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, followed by well-structured sections for Args and Returns. Every sentence adds value: the first states the action, the Args section details parameters clearly, and the Returns section explains output. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, rich annotations, and the presence of an output schema (implied by the Returns section), the description is complete. It covers purpose, parameters, return values, and behavioral nuances like cleaning and formatting, leaving no significant gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by explaining both parameters: 'name' is clarified as a page title with examples and formatting notes, and 'max_chars' is defined as a soft cap with a default value. This adds essential meaning beyond the bare schema.
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 ('Fetch the cleaned content') and resource ('an aesthetic's wiki page'), distinguishing it from sibling tools like get_aesthetic_images (which likely fetches images only) or search_aesthetic (which searches rather than fetches a specific page). The verb+resource combination is precise and unambiguous.
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 by specifying what it fetches (cleaned wiki content), but doesn't explicitly state when to use this tool versus alternatives like search_aesthetic or list_related. No exclusions or prerequisites are mentioned, leaving the agent to infer context from the tool name and description alone.
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?
Annotations already declare readOnlyHint=true, idempotentHint=true, and openWorldHint=true, covering safety and idempotency. The description adds useful behavioral context by specifying the return format (dict with source and related lists) and the default limit, which enhances understanding beyond the annotations.
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, with a clear purpose statement followed by well-structured sections for Args and Returns. Every sentence earns its place without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity, rich annotations, and the presence of an output schema (which covers return values), the description is complete enough. It effectively explains purpose, parameters, and usage context without needing to detail outputs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by explaining both parameters: 'name' as the source page title with an example, and 'limit' with its range and default value. This adds essential meaning beyond the bare schema.
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 a specific verb ('List') and resource ('aesthetics linked from a given page'), and distinguishes it from siblings by focusing on neighbor discovery rather than direct retrieval, search, or random selection.
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 usage ('useful for discovering neighbors'), but does not explicitly state when not to use it or name specific alternatives among the sibling tools, such as when to prefer search_aesthetic over this tool.
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?
The description adds valuable behavioral context beyond what annotations provide: it specifies that the tool 'Excludes tiny icons and SVG placeholders' (filtering behavior not indicated by annotations) and mentions the return format. Annotations cover read-only, idempotent, and open-world characteristics, but the description supplements with practical implementation details.
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 perfectly structured and front-loaded: the first sentence states the core purpose, followed by clearly labeled sections for Args and Returns. Every sentence earns its place by providing necessary information without redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, rich annotations (readOnlyHint, idempotentHint, openWorldHint), and the presence of an output schema, the description is complete enough. It explains what the tool does, provides parameter semantics, describes key behavioral traits (filtering exclusions), and references the return structure—all without needing to duplicate schema information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by providing clear semantics for both parameters: 'name' is explained as 'Page title (e.g. "Cottagecore", "Dark Academia")' with examples, and 'limit' as 'Max number of images (1-50). Default 12.' This adds essential meaning beyond the bare schema.
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 ('Get image URLs') and resource ('from an aesthetic's wiki page'), with the phrase 'perfect for moodboards' providing practical context. It distinguishes this tool from siblings like 'get_aesthetic' (likely returns general info) and 'search_aesthetic' (likely searches for aesthetics) by focusing specifically on image extraction.
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 ('perfect for moodboards'), but does not explicitly state when not to use it or name alternatives among sibling tools. The agent can infer usage from the purpose, but lacks explicit guidance on tool selection scenarios.
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/leonardoca1/aesthetics-wiki-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server