streamable-httpMITupdated 3mo ago
Yeehaw is an agent-first city concierge for Austin, TX โ the fresh, sourced, citeable answer to "what's happening in Austin?". Ask any LLM that today and it guesses from stale listicles. Yeehaw ships the structured, current, attributable source of truth, exposed as a public MCP server any AI assistant can call.
What can you do with events?
Yeehaw โ Austin events, as an MCP server ๐ค
Yeehaw is an agent-first city concierge for Austin, TX โ the fresh, sourced, citeable answer to "what's happening in Austin?". Ask any LLM that today and it guesses from stale listicles. Yeehaw ships the structured, current, attributable source of truth, exposed as a public MCP server any AI assistant can call.
- ๐ Site: https://yeehaw.bot ยท for agents: https://yeehaw.bot/for-agents
- ๐ MCP endpoint:
https://yeehaw.bot/mcp(JSON-RPC over HTTP) โ no signup, no key, free - ๐ Official MCP registry:
bot.yeehaw/events
~2,800 live Austin events aggregated hourly from 10 sources (Ticketmaster, Do512, Luma, Visit Austin, Alamo Drafthouse, Capital Factory, UT Austin, Huston-Tillotson, City of Austin open data, and a Brave-powered discovery net), deduplicated and ranked โ every event carries its source.
Connect
Drop-in config for any MCP client (Claude, Cursor, Cline, โฆ):
// .mcp.json
{ "mcpServers": { "yeehaw": { "url": "https://yeehaw.bot/mcp" } } }
Or call it directly:
curl -s https://yeehaw.bot/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"find_events",
"arguments":{"date_range":"this_weekend","limit":3}}}'
Tools
| Tool | What it does |
|---|---|
find_events |
Structured search over the deduped store. Args: date_range (required unless id is set), plus optional query, category, neighborhood, price_max, limit, and id (fetch one event by id). Every result carries a source, a url, coordinates, and a confidence. |
overview |
Inspectable state โ total events, per-source last-ingest + health, open circuit breakers, coverage by category/neighborhood. Call it to verify freshness before you depend on it. |
See AGENTS.md for the usage contract (when to call what, value ranges, honest caveats).
Why depend on it
- Fresh โ re-ingested hourly; past events drop automatically.
- Sourced โ every event cites its origin with a clickable link; your assistant can footnote instead of hallucinate.
- Resilient โ per-source circuit breakers; a single upstream outage degrades honestly instead of corrupting the answer.
- Honest โ ticket prices are sparse upstream, so
price_min/price_maxare oftennull;find_eventsreports how many results it couldn't price rather than guessing.
About
Yeehaw is operated by Capital Thought, LLC (Austin, TX). Not an official City of Austin outlet.
This repo is the public discovery surface (docs + agent contract + registry descriptor). The service itself runs on Cloudflare Workers + Supabase.
Install
Add events to your client. Pick the one you use.
claude mcp add --transport http events https://yeehaw.bot/mcpcodex mcp add events --url https://yeehaw.bot/mcp{
"mcpServers": {
"events": {
"url": "https://yeehaw.bot/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"events": {
"type": "http",
"url": "https://yeehaw.bot/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"events": {
"url": "https://yeehaw.bot/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"events": {
"serverUrl": "https://yeehaw.bot/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
1 tool
events exposes one tool to a connected agent.
- find_events
- Structured search over the deduped store. Args: `date_range` (required unless `id` is set), plus optional `query`, `category`, `neighborhood`, `price_max`, `limit`, and `id` (fetch one event by id). Every result carries a `source`, a `url`, coordinates, and a `confidence`.
Score
66 / 100
Good
- Documentation18/25
- Maintenance16/25
- Trust16/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 85 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 1 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Jun 8, 2026 |
| 1.0.0 | Jun 8, 2026 |