aesthetics-wiki-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_aestheticA | Search the Aesthetics Wiki for pages matching a query. Args: query: Free-text search (e.g. "cottagecore", "dark academia", "y2k"). limit: Max number of results (1-50). Default 10. Returns:
A dict with |
| get_aestheticA | Fetch the cleaned content of an aesthetic's wiki page. Args: name: Page title (e.g. "Cottagecore", "Dark Academia"). Case-insensitive, underscores or spaces both work. max_chars: Soft cap on returned text length. Default 6000. Returns:
A dict with |
| list_relatedA | List aesthetics linked from a given page — useful for discovering neighbors. Args: name: Source page title (e.g. "Cottagecore"). limit: Max number of related pages (1-100). Default 20. Returns:
A dict with |
| get_aesthetic_imagesA | Get image URLs from an aesthetic's wiki page — perfect for moodboards. Args: name: Page title (e.g. "Cottagecore", "Dark Academia"). limit: Max number of images (1-50). Default 12. Returns:
A dict with |
| random_aestheticA | Get one or more random aesthetics from the wiki — great for inspiration. Args: count: Number of random pages (1-10). Default 1. Returns:
A dict with |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
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.
All 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.
With 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.
The 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.