Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

leonardoca1/aesthetics-wiki-mcp MCP server](https://glama.ai/mcp/servers/leonardoca1/aesthetics-wiki-mcp/badges/score.svg)](https://glama.ai/mcp/servers/leonardoca1/aesthetics-wiki-mcp) 🐍 🏠 🍎 πŸͺŸ 🐧 - Search, read, and discover thousands of visual...

README.md

Aesthetics Wiki MCP

![PyPI version](https://pypi.org/project/aesthetics-wiki-mcp/) ![Python versions](https://pypi.org/project/aesthetics-wiki-mcp/) ![CI](https://github.com/leonardoca1/aesthetics-wiki-mcp/actions/workflows/ci.yml) ![License: MIT](LICENSE)

An MCP server that lets LLMs search, read, and discover aesthetics from the Aesthetics Wiki (cottagecore, dark academia, y2k, goblincore, and thousands more).

Backed by the MediaWiki API. No API key required. Zero setup: run it straight with uvx.

Why

The Aesthetics Wiki is one of the richest open catalogues of visual subcultures on the internet, but its content is locked behind a web UI. This server turns it into a structured tool so an LLM can actually use it:

  • Mood-boards and visual research β€” pull a gallery of real reference images for any aesthetic in one tool call.
  • Brand and creative direction β€” explore adjacent styles, find the right tag for a feeling, compare neighbors.
  • Writing and worldbuilding β€” get grounded vocabulary (fashion, music, motifs) instead of generic LLM vibes.
  • Serendipity β€” random_aesthetic is a cure for blank-page syndrome.

Tools

| Tool | Description | | --- | --- | | search_aesthetic(query, limit=10) | Full-text search across the wiki. | | get_aesthetic(name, max_chars=6000) | Fetch a page's cleaned content + main image URL. | | get_aesthetic_images(name, limit=12) | Gallery of image URLs from a page β€” perfect for moodboards. | | list_related(name, limit=20) | List aesthetics linked from a page (neighbors/related). | | random_aesthetic(count=1) | Pick random aesthetics for inspiration. |

All tools are read-only.

Example output

// get_aesthetic(name="Cottagecore", max_chars=600)
{
  "title": "Cottagecore",
  "url": "https://aesthetics.fandom.com/wiki/Cottagecore",
  "summary": "Cottagecore is an internet aesthetic that romanticizes a simple, self-sufficient life in harmony with nature, drawing inspiration from an idealized vision of Western rural and farm life. Gaining widespread popularity in the late 2010s and early 2020s on platforms like Tumblr and TikTok, it serves as a form of gentle escapism from the pressures of modern, capitalist society...",
  "main_image": "https://static.wikia.nocookie.net/aesthetics/images/3/34/Cottagecore.jpg/revision/latest?cb=20230730224216"
}
// list_related(name="Cottagecore", limit=5)
{
  "source": "Cottagecore",
  "count": 5,
  "related": [
    { "title": "Fairycore",   "url": "https://aesthetics.fandom.com/wiki/Fairycore" },
    { "title": "Goblincore",  "url": "https://aesthetics.fandom.com/wiki/Goblincore" },
    { "title": "Grandmacore", "url": "https://aesthetics.fandom.com/wiki/Grandmacore" },
    { "title": "Farmcore",    "url": "https://aesthetics.fandom.com/wiki/Farmcore" },
    { "title": "Naturecore",  "url": "https://aesthetics.fandom.com/wiki/Naturecore" }
  ]
}

Quick start

Requires Python 3.10+ and uv. Nothing to install manually β€” uvx fetches and runs it on demand.

Claude Code / Claude Desktop

Add this to your MCP config (~/.claude/settings.json, project .mcp.json, or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "aesthetics-wiki": {
      "command": "uvx",
      "args": ["aesthetics-wiki-mcp"]
    }
  }
}

Restart your client and the 5 tools show up automatically.

Other MCP clients

Any client that speaks stdio works. Just run uvx aesthetics-wiki-mcp as the transport command.

Manual install

uv tool install aesthetics-wiki-mcp      # or: pipx install aesthetics-wiki-mcp
aesthetics-wiki-mcp                       # starts the stdio server

Example prompts

  • "Find aesthetics related to dark academia and show me a visual moodboard."
  • "Give me 5 random aesthetics and a one-sentence vibe for each."
  • "What are the core elements of cottagecore? Any adjacent aesthetics I should know?"
  • "Compare y2k and 2014 Tumblr aesthetically."

Development

uv sync
uv run aesthetics-wiki-mcp        # start stdio server
uv run python -m py_compile src/aesthetics_wiki_mcp/server.py

Test interactively with the MCP Inspector:

npx @modelcontextprotocol/inspector uv run aesthetics-wiki-mcp

License

MIT. Content from the Aesthetics Wiki is licensed CC-BY-SA 3.0 by its contributors; this project only proxies read access and attributes the source in every response URL.

Credits

Built by Leonardo Cametti. Data Β© Aesthetics Wiki contributors.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Search servers.