Skip to content

For AI agents

Agent-ready

Every page on Tower Hub registers five WebMCP tools — the W3C draft that lets a website hand an AI agent clean actions instead of a DOM to scrape. If your browser agent supports it, it can search the wiki, define a term, read the tier list or this week’s Creator Pulse, and run the Tower Advisor engine on your profile without leaving the page. The same data is reachable as plain JSON for headless agents.

The tools

WebMCP tools exposed by Tower Hub
ToolWhat it returnsInputHeadless
search_tower_wikiSearch 230+ wiki pages by keyword; returns titles, descriptions and URLs.{ query: string }GET /api/agent/wiki-search?q=black+hole
define_tower_termOne glossary definition (eHP, GT sync, Glass Cannon, …) in en / de / es / ja.{ term: string, lang?: 'en'|'de'|'es'|'ja' }GET /api/agent/glossary?term=eHP&lang=en
get_uw_tier_listEvery Ultimate Weapon ranked with role, verdict and the stone cost of each unlock slot.{}GET /api/agent/tier-list
get_creator_pulseThis week's top Tower YouTube channels and the video, stream and short of the week.{}GET /api/agent/pulse
get_tower_adviceRuns the Tower Advisor engine on a profile and returns RoI-ranked next steps.{ unlockedUWs: string[], league?, totalStones?, labs?, hasMVN?, hasDC? }POST /api/agent/advice

Four ways in

MCP server

Streamable HTTP, no auth, read-only. Add it to Claude, Cursor or any MCP client.

https://www.tower-hub.com/api/mcp

WebMCP

Registered on every page for browser agents (Chrome 146+ with the WebMCP flag).

document.modelContext

Plain JSON

The same tools as GET/POST routes for scripts and headless agents.

https://www.tower-hub.com/api/agent/*

Discord

Slash commands for your server: /wiki, /define, /tierlist, /pulse, /advice — same data, as embeds.

/advice uws: GT BH DW

Claude Code: claude mcp add --transport http tower-hub https://www.tower-hub.com/api/mcp. In claude.ai, add it as a custom connector with the same URL. Crawlers and agents reading text: /llms.txt (index) and /llms-full.txt (the whole wiki and glossary).

Try WebMCP in the browser

  1. Use Chrome 146 or newer and enable the WebMCP flag under chrome://flags.
  2. Open any Tower Hub page — the tools register automatically (check the console for [webmcp] Tower Hub tools registered).
  3. Ask your browser agent something like “Which UW should I unlock next? I have GT, BH and DW, gold league, 400 stones.”

Headless agents can call the JSON routes directly — they are read-only, rate-friendly and never store anything. If you build something on top of them, a link back to Tower Hub is appreciated.

More from the hub