events
Server Details
Agent-first Austin events concierge — fresh, sourced answers to what's happening in Austin.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- capitalthought/yeehaw-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 2 of 2 tools scored.
find_events and overview have clearly distinct purposes: one queries events, the other reports system health. No overlap or ambiguity.
Both use snake_case, but find_events follows a verb_noun pattern while overview is a standalone noun. Minor inconsistency but still readable.
Only 2 tools for an events server feels underdeveloped. Typically such servers offer at least basic CRUD, making this count too low for the apparent scope.
Lacks essential operations like creating, updating, or deleting events. Only query and system health are present, leaving significant gaps.
Available Tools
2 toolsfind_eventsAInspect
Find upcoming Austin events from Yeehaw's sourced, deduplicated store. Structured filter over the events table; events more than 24h past are filtered. Every record carries a source attribution and a confidence score. Pass id to fetch one event by id; it ignores date_range and all other filters.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Fetch one event by id; ignores date_range and other filters when set. | |
| limit | No | Max results, default 20, clamped to 50. | |
| query | No | Free-text keyword match against event titles. | |
| category | No | Category slug (e.g. music, sports, civic). | |
| price_max | No | Maximum ticket price in USD. price_max=0 returns only events with a known $0 price. Most events have no listed price (sparse upstream data) — for price_max>0 those are still returned and the response states how many were not price-filtered. | |
| date_range | No | Required unless `id` is set. e.g. today, tonight, this_weekend, next_7_days, or an ISO date range. | |
| neighborhood | No | Austin neighborhood slug. One of: downtown, east-austin, hyde-park, mueller, rainey-street, south-congress, the-domain, zilker. Common shorthands (east, domain, soco, rainey) are accepted. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It usefully discloses that events more than 24h past are filtered, every record has source and confidence fields, and passing id bypasses date_range and other filters. This goes beyond the basic schema and helps the agent understand edge cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded, using three sentences to convey purpose, data transparency, and the critical id exception. Every sentence adds value, with no redundant filler or repetition of schema fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given seven parameters, no annotations, and no output schema, the description does a good job covering purpose, filtering behavior, record attributes, and the id override. It could be slightly more complete by explicitly stating the return shape (e.g., a list of events), but the mention of 'every record' and the response-count note in the schema compensate. Overall it is sufficiently complete for a read-oriented filter tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents all seven parameters with 100% coverage, so the baseline is 3. The description adds minimal parameter-level meaning beyond what the schema provides; it repeats the id override behavior already in the schema and does not offer new syntax or formatting details for other parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool finds upcoming Austin events from Yeehaw's sourced, deduplicated store, using a structured filter over the events table. It is specific about the resource and scope, distinguishing it from the only sibling 'overview' by positioning it as the queryable event store.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool and explains the special 'id' mode that ignores other filters. It does not explicitly mention when not to use it relative to the sibling 'overview' tool, but the filtering semantics and id behavior give sufficient practical guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
overviewAInspect
Inspectable State: report Yeehaw's operational state in one call (no input) — event counts, last successful ingest per source vs cadence, cron health, open circuit breakers, recent error tail, and coverage gaps.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It clearly frames the operation as a read-only report of state, which implies no mutation, but it does not disclose potential side effects, access requirements, latency, or whether the returned data is sampled or comprehensive. The listed contents help but leave open questions about behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, dense sentence that wastes no words. It front-loads the core purpose ('Inspectable State') and then packs a comprehensive list of report contents into an em-dash-separated tail, making it both efficient and scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex operational state report with no output schema and no annotations, the description lists categories but does not specify return format, field names, pagination, or error behavior. It is sufficiently complete for basic selection but leaves gaps for an agent that needs to parse or rely on the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the baseline is 4. The description reinforces the no-input expectation and implicitly explains that the tool returns a broad snapshot rather than requiring filters. Since the schema is just an empty object, the description adds meaningful context about what the tool covers.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('report') and identifies the resource ('Yeehaw's operational state') with a clear scope ('in one call (no input)'). It enumerates the contents (event counts, ingest status, cron health, circuit breakers, error tail, coverage gaps), which fully differentiates it from the sibling tool find_events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage as a quick no-input state check but provides no explicit guidance on when to use this tool versus find_events or other alternatives. The sibling tool is not mentioned, and there are no exclusions or alternative suggestions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityDmaintenanceSearch 8,000+ corporate event venues across 40+ cities. Tools for venue search by capacity/category, pricing guides, expert advice articles, and inquiry handoff. Read-only, PII-redacted, UTM-attributed.76MIT
- Alicense-qualityCmaintenanceEnables querying Austin, TX open data from data.austintexas.gov using the Socrata SODA API, allowing AI agents to access municipal datasets through natural language.7MIT
- AlicenseAqualityBmaintenanceProvides music events, concerts, music festivals, nightclubs and other events information.172MIT
- Alicense-qualityBmaintenanceDiscover tech events, startup meetups, AI events across cities including hidden ones.372MIT