---
name: mechamanda.com
description: mechamanda.com exposes two unrelated data feeds: a snapshot of trending Polymarket prediction markets (with probabilities, liquidity, and volume) and a listing of upcoming live music concerts (with venue, artist, date, and ticketing links). Both skills return read-only, single-shot data with no inputs required.
host: mechamanda.com
---

# mechamanda.com

mechamanda.com is a lightweight data host serving two distinct domains — prediction market discovery and live music event discovery. It is suited for agents that need quick, no-parameter lookups of trending Polymarket questions or upcoming concert schedules. The two skills share no data model and serve independent use cases; the host does not specialize in either domain beyond providing a current snapshot.

## When to use this host

Use this host when an agent needs a zero-input snapshot of trending Polymarket markets or a list of upcoming live music concerts. For Polymarket use cases, do not use this host if you need historical market data, resolved outcomes, or streaming price updates — consult Polymarket's own API or a dedicated prediction market data provider instead. For concert use cases, do not use this host for sports, theater, or other non-music live events, and do not rely on it for real-time ticket availability or confirmed pricing. The two skills are entirely independent; there is no cross-skill workflow that combines them meaningfully.

## Capabilities

### Prediction Market Discovery

Retrieves a current snapshot of trending Polymarket markets, including implied outcome probabilities, liquidity depth, and trading volume, enabling agents to surface active questions for analysis or display.

- **`fetch-polymarket-trending`** — Returns a list of currently trending Polymarket prediction markets, each with question text, description, outcomes, outcome prices, liquidity, and trading volume.

### Live Music Event Discovery

Retrieves upcoming concert listings with event metadata — artists, venue, city, date/time, price range, and ticketing URL — enabling agents to surface live music opportunities or answer scheduling queries.

- **`fetch-concert-listings`** — Returns a list of upcoming live music concert events including event name, date, time, venue, city, artists, price range, and ticketing URL.

## Skill reference

### `fetch-polymarket-trending`

**Polymarket Trending Feed** — Returns a list of currently trending Polymarket prediction markets, each with question text, description, outcomes, outcome prices, liquidity, and trading volume.

*Use when:* Use when an agent needs to discover active or high-volume Polymarket prediction markets, retrieve current implied probabilities for outcomes, or surface trending questions for analysis or display.

*Not for:* Do not use for historical market data, resolved market results, or real-time price streaming; this is a single-shot snapshot of trending markets only.

**Returns:** Returns a JSON array of trending prediction markets, each containing question, liquidity (USD), description, outcomes array, outcomePrices array (decimal probabilities), and volume (USD).

**Example:** `GET https://mechamanda.com/api/polymarket/trending`

---

### `fetch-concert-listings`

**ConcertPulse API** — Returns a list of upcoming live music concert events including event name, date, time, venue, city, artists, price range, and ticketing URL.

*Use when:* Use when an agent needs to discover upcoming live music events, retrieve concert schedules, or look up ticketing links for specific artists or venues.

*Not for:* Do not use for sports events, theater, or non-music live events. Not suitable for real-time ticket availability or pricing — priceRange may be null.

**Returns:** Returns an array of concert event objects, each with name, date, time, venue, city, artists array, priceRange (nullable), and a ticketing URL.

**Example:** `GET https://mechamanda.com/api/concerts`

---
