ultras-mcp 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +162 -0
- package/dist/data/city-guides.d.ts +2 -0
- package/dist/data/city-guides.js +373 -0
- package/dist/data/fan-zones.d.ts +2 -0
- package/dist/data/fan-zones.js +646 -0
- package/dist/data/groups.d.ts +2 -0
- package/dist/data/groups.js +62 -0
- package/dist/data/historical-matchups.d.ts +2 -0
- package/dist/data/historical-matchups.js +556 -0
- package/dist/data/injuries.d.ts +2 -0
- package/dist/data/injuries.js +197 -0
- package/dist/data/matches.d.ts +13 -0
- package/dist/data/matches.js +1339 -0
- package/dist/data/news.d.ts +2 -0
- package/dist/data/news.js +3031 -0
- package/dist/data/odds.d.ts +2 -0
- package/dist/data/odds.js +53 -0
- package/dist/data/team-profiles.d.ts +2 -0
- package/dist/data/team-profiles.js +566 -0
- package/dist/data/teams.d.ts +2 -0
- package/dist/data/teams.js +488 -0
- package/dist/data/venues.d.ts +2 -0
- package/dist/data/venues.js +236 -0
- package/dist/data/visa-info.d.ts +2 -0
- package/dist/data/visa-info.js +1190 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1771 -0
- package/dist/types/index.d.ts +210 -0
- package/dist/types/index.js +2 -0
- package/package.json +64 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Jordan Lyall
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
# ultras-mcp
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/ultras-mcp)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://www.typescriptlang.org/)
|
|
6
|
+
[](https://modelcontextprotocol.io)
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<img src="website/og-image.png" alt="Ultras MCP — World Cup 2026 data for AI" width="600">
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
Ask your AI anything about the 2026 World Cup and get real answers. 18 tools covering matches, teams, venues, city guides, fan zones, head-to-head records, visa info, news, injuries, odds, standings, knockout bracket, and more. All data ships with the package. Zero API keys, zero external dependencies.
|
|
13
|
+
|
|
14
|
+
Works with **Claude Desktop** · **Claude Code** · **Cursor** · **Windsurf** · **ChatGPT** · **Telegram** · any MCP client
|
|
15
|
+
|
|
16
|
+
**[Website](https://ultras.ai)** | **[npm](https://www.npmjs.com/package/ultras-mcp)** | **[ChatGPT GPT](https://chatgpt.com/g/g-698d038f171481919ada44947304a196-world-cup-2026-companion)** | **[Telegram Bot](https://t.me/ultrasai_bot)** | **[MCP Registry](https://registry.modelcontextprotocol.io)**
|
|
17
|
+
|
|
18
|
+
## Quick Start
|
|
19
|
+
|
|
20
|
+
### Claude Desktop
|
|
21
|
+
|
|
22
|
+
Add to your `claude_desktop_config.json`:
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"mcpServers": {
|
|
27
|
+
"ultras": {
|
|
28
|
+
"command": "npx",
|
|
29
|
+
"args": ["-y", "ultras-mcp"]
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Claude Code
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
claude mcp add ultras -- npx -y ultras-mcp
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Cursor
|
|
42
|
+
|
|
43
|
+
Add to `.cursor/mcp.json`:
|
|
44
|
+
|
|
45
|
+
```json
|
|
46
|
+
{
|
|
47
|
+
"mcpServers": {
|
|
48
|
+
"ultras": {
|
|
49
|
+
"command": "npx",
|
|
50
|
+
"args": ["-y", "ultras-mcp"]
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Windsurf
|
|
57
|
+
|
|
58
|
+
Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
59
|
+
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"mcpServers": {
|
|
63
|
+
"ultras": {
|
|
64
|
+
"command": "npx",
|
|
65
|
+
"args": ["-y", "ultras-mcp"]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### ChatGPT
|
|
72
|
+
|
|
73
|
+
No setup needed — use the GPT directly:
|
|
74
|
+
|
|
75
|
+
**[Open World Cup 2026 Companion](https://chatgpt.com/g/g-698d038f171481919ada44947304a196-world-cup-2026-companion)**
|
|
76
|
+
|
|
77
|
+
### Telegram
|
|
78
|
+
|
|
79
|
+
No setup needed — message the bot directly:
|
|
80
|
+
|
|
81
|
+
**[Open @ultrasai_bot on Telegram](https://t.me/ultrasai_bot)**
|
|
82
|
+
|
|
83
|
+
17 slash commands: `/brief`, `/team`, `/matches`, `/group`, `/city`, `/venue`, `/history`, `/visa`, `/fanzones`, `/schedule`, `/news`, `/injuries`, `/odds`, `/standings`, `/bracket`, and more.
|
|
84
|
+
|
|
85
|
+
### Other MCP Clients
|
|
86
|
+
|
|
87
|
+
The server communicates over stdio using the [Model Context Protocol](https://modelcontextprotocol.io):
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npx -y ultras-mcp
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Tools
|
|
94
|
+
|
|
95
|
+
| Tool | Description | Filters |
|
|
96
|
+
|------|-------------|---------|
|
|
97
|
+
| `what_to_know_now` | Zero-query temporal briefing — detects tournament phase and returns the most relevant info for today | `date`, `timezone` |
|
|
98
|
+
| `get_team_profile` | Coach, key players, playing style, World Cup history, and qualifying summary for any team | `team` |
|
|
99
|
+
| `get_matches` | Query matches with enriched team names, flags, venue details, and timezone conversion | `date`, `date_from`, `date_to`, `team`, `group`, `venue`, `round`, `status`, `timezone` |
|
|
100
|
+
| `get_teams` | All 48 qualified nations with FIFA rankings and confederations | `group`, `confederation`, `is_host` |
|
|
101
|
+
| `get_groups` | Group details with teams, venues, and match schedules | `group` |
|
|
102
|
+
| `get_venues` | 16 stadiums across USA, Mexico, and Canada with weather data | `country`, `city`, `region` |
|
|
103
|
+
| `get_city_guide` | Travel guide for any host city — highlights, transit, food, things to do, local tips | `city` |
|
|
104
|
+
| `get_historical_matchups` | Head-to-head World Cup history between any two teams with aggregate stats and narrative | `team_a`, `team_b` |
|
|
105
|
+
| `get_nearby_venues` | Find venues near a given venue, sorted by distance in miles/km | `venue`, `limit` |
|
|
106
|
+
| `get_schedule` | Tournament schedule organized by date with timezone conversion | `date_from`, `date_to`, `timezone` |
|
|
107
|
+
| `get_visa_info` | Entry requirements (visa, ESTA, eTA) for any team's nationals entering host countries | `team`, `host_country` |
|
|
108
|
+
| `get_fan_zones` | Official FIFA Fan Festival locations across all 16 host cities with capacity, hours, activities, and transit tips | `city`, `country`, `venue_id` |
|
|
109
|
+
| `get_news` | Latest World Cup news headlines sourced by the Scout Agent daily | `topic`, `limit` |
|
|
110
|
+
| `get_injuries` | Key player availability tracker — injury status, expected return dates, and impact assessment | `team`, `status` |
|
|
111
|
+
| `get_odds` | Tournament favorites, golden boot predictions, group previews, and dark horse picks | `category`, `group` |
|
|
112
|
+
| `compare_teams` | Side-by-side comparison of any two teams — rankings, odds, key players, group difficulty, injuries, and head-to-head | `team_a`, `team_b` |
|
|
113
|
+
| `get_standings` | Group power rankings based on FIFA rankings, betting odds, and predictions | `group` |
|
|
114
|
+
| `get_bracket` | Knockout bracket visualization — R32 through Final with venues, dates, and group entry points | `round` |
|
|
115
|
+
|
|
116
|
+
## Example Prompts
|
|
117
|
+
|
|
118
|
+
> "Brief me on the World Cup"
|
|
119
|
+
|
|
120
|
+
> "Tell me about Argentina's squad and playing style"
|
|
121
|
+
|
|
122
|
+
> "When does the USA play their first match?"
|
|
123
|
+
|
|
124
|
+
> "Show me tomorrow's matches in my timezone (America/New_York)"
|
|
125
|
+
|
|
126
|
+
> "What's the World Cup history between Argentina and England?"
|
|
127
|
+
|
|
128
|
+
> "Give me a city guide for Dallas"
|
|
129
|
+
|
|
130
|
+
> "Where are the fan zones in New York?"
|
|
131
|
+
|
|
132
|
+
> "What's the latest World Cup news?"
|
|
133
|
+
|
|
134
|
+
> "Do Iranian fans need a visa to attend matches in the US?"
|
|
135
|
+
|
|
136
|
+
> "What venues are closest to MetLife Stadium?"
|
|
137
|
+
|
|
138
|
+
## Data
|
|
139
|
+
|
|
140
|
+
| | Count | Details |
|
|
141
|
+
|---|---|---|
|
|
142
|
+
| Matches | 104 | Group stage + knockout, all in UTC (timezone conversion supported) |
|
|
143
|
+
| Teams | 48 | 42 confirmed, 6 TBD (playoffs March 26 & 31) |
|
|
144
|
+
| Venues | 16 | USA (11), Mexico (3), Canada (2) with weather data |
|
|
145
|
+
| Team profiles | 48 | Coach, key players, style, WC history |
|
|
146
|
+
| City guides | 16 | Transit, food, attractions, local tips |
|
|
147
|
+
| Historical matchups | 34 | Head-to-head WC records with narrative |
|
|
148
|
+
| Fan zones | 18 | All host cities, capacity, hours, transport |
|
|
149
|
+
| Visa entries | 42 | All confirmed nationalities across 3 host countries |
|
|
150
|
+
| News | Daily | Scout Agent curates latest World Cup headlines |
|
|
151
|
+
| Injuries | 6+ | Key player availability with status and expected return |
|
|
152
|
+
| Odds | 16+ | Tournament winner, golden boot, group predictions, dark horses |
|
|
153
|
+
|
|
154
|
+
Tournament: **June 11 - July 19, 2026**
|
|
155
|
+
|
|
156
|
+
## Contributing
|
|
157
|
+
|
|
158
|
+
This is an open source project under the MIT license. Issues and PRs welcome at [github.com/jordanlyall/ultras-mcp](https://github.com/jordanlyall/ultras-mcp).
|
|
159
|
+
|
|
160
|
+
## License
|
|
161
|
+
|
|
162
|
+
MIT
|
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
export const cityGuides = [
|
|
2
|
+
// ── UNITED STATES (11 venues) ──────────────────────────────
|
|
3
|
+
{
|
|
4
|
+
venue_id: "metlife",
|
|
5
|
+
metro_area: "New York City",
|
|
6
|
+
highlights: "The world's most iconic city and host of the 2026 Final. MetLife Stadium sits across the Hudson in East Rutherford, NJ, with the Manhattan skyline as a backdrop. Expect an electric, globally diverse atmosphere.",
|
|
7
|
+
getting_there: "Three major airports: JFK, Newark (EWR, closest to MetLife), and LaGuardia. NJ Transit trains run from Penn Station to Meadowlands station on match days. Shuttle buses connect the station to the stadium.",
|
|
8
|
+
food_and_drink: [
|
|
9
|
+
"Dollar-slice pizza at any corner shop in Manhattan — a NYC rite of passage",
|
|
10
|
+
"Halal cart chicken and rice from 53rd & 6th or The Halal Guys",
|
|
11
|
+
"Bagels from Russ & Daughters or Absolute Bagels",
|
|
12
|
+
"Craft beer at any of dozens of breweries in Brooklyn or Jersey City",
|
|
13
|
+
],
|
|
14
|
+
things_to_do: [
|
|
15
|
+
"Walk the High Line, Central Park, or the Brooklyn Bridge",
|
|
16
|
+
"Catch the Statue of Liberty & Ellis Island ferry from Battery Park",
|
|
17
|
+
"Explore Times Square, the 9/11 Memorial, and the Empire State Building",
|
|
18
|
+
"Watch street performers and artists in Washington Square Park",
|
|
19
|
+
],
|
|
20
|
+
local_tips: [
|
|
21
|
+
"Get a MetroCard or use OMNY tap-to-pay — NYC subway runs 24/7 and is the fastest way around",
|
|
22
|
+
"MetLife has no roof — bring sunscreen for day games and a rain layer for evening",
|
|
23
|
+
"Allow 90+ minutes to get from Manhattan to MetLife on match day — traffic and transit will be packed",
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
venue_id: "sofi",
|
|
28
|
+
metro_area: "Los Angeles",
|
|
29
|
+
highlights: "LA is the entertainment capital of the world, hosting the USA's opening match. SoFi Stadium in Inglewood is a state-of-the-art indoor-outdoor venue right next to LAX. The city's diversity means world-class food from every continent.",
|
|
30
|
+
getting_there: "LAX is minutes from SoFi Stadium. The new Inglewood Transit Connector and LA Metro K Line connect to the stadium area. Ride-share is common, but budget extra time — LA traffic is legendary.",
|
|
31
|
+
food_and_drink: [
|
|
32
|
+
"Tacos from a street stand in East LA or Grand Central Market",
|
|
33
|
+
"Korean BBQ in Koreatown — all-you-can-eat spots line 6th and Western",
|
|
34
|
+
"In-N-Out Burger — the iconic California fast-food experience",
|
|
35
|
+
"Birria tacos from Teddy's Red Tacos or Birrieria Gonzalez",
|
|
36
|
+
],
|
|
37
|
+
things_to_do: [
|
|
38
|
+
"Walk the Venice Beach boardwalk and Santa Monica Pier",
|
|
39
|
+
"Hike to the Hollywood Sign via Griffith Observatory for city-wide views",
|
|
40
|
+
"Visit the Getty Center for world-class art with free admission",
|
|
41
|
+
"Explore the vibrant murals and galleries in the Arts District",
|
|
42
|
+
],
|
|
43
|
+
local_tips: [
|
|
44
|
+
"Rent a car or plan ride-shares — LA is sprawling and public transit has gaps",
|
|
45
|
+
"SoFi's translucent roof means it's not fully enclosed — dress for warm weather",
|
|
46
|
+
"Arrive early to explore the Hollywood Park entertainment district around the stadium",
|
|
47
|
+
],
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
venue_id: "att",
|
|
51
|
+
metro_area: "Dallas-Fort Worth",
|
|
52
|
+
highlights: "The DFW metroplex is Texas-sized in every way, and AT&T Stadium in Arlington hosts the most matches of any venue (9 total), including a semi-final. The retractable-roof stadium is climate-controlled, a blessing in Texas summer heat.",
|
|
53
|
+
getting_there: "DFW International Airport is the main hub, ~20 minutes from Arlington. Dallas Love Field (DAL) is a Southwest Airlines hub. Arlington lacks rail service — ride-share or rental car is essential to reach the stadium.",
|
|
54
|
+
food_and_drink: [
|
|
55
|
+
"Texas BBQ brisket from Pecan Lodge, Cattleack, or Terry Black's",
|
|
56
|
+
"Tex-Mex at Mi Cocina or Joe T. Garcia's in Fort Worth",
|
|
57
|
+
"Chicken-fried steak — a Texas staple found at most local diners",
|
|
58
|
+
"Craft beer from Deep Ellum Brewing or Community Beer Co.",
|
|
59
|
+
],
|
|
60
|
+
things_to_do: [
|
|
61
|
+
"Visit the Sixth Floor Museum at Dealey Plaza (JFK assassination history)",
|
|
62
|
+
"Explore the Fort Worth Stockyards for a taste of cowboy culture",
|
|
63
|
+
"Walk through the Dallas Arts District — largest urban arts district in the US",
|
|
64
|
+
"Catch live music in Deep Ellum, Dallas's entertainment neighborhood",
|
|
65
|
+
],
|
|
66
|
+
local_tips: [
|
|
67
|
+
"Summer temps regularly exceed 95°F (35°C) — stay hydrated and seek shade outdoors",
|
|
68
|
+
"AT&T Stadium has a retractable roof and AC, so it's comfortable inside regardless of weather",
|
|
69
|
+
"Arlington sits between Dallas and Fort Worth with no rail — plan for car/ride-share logistics",
|
|
70
|
+
],
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
venue_id: "hard_rock",
|
|
74
|
+
metro_area: "Miami",
|
|
75
|
+
highlights: "Miami is a tropical, bilingual gateway city hosting the third-place playoff. Hard Rock Stadium in Miami Gardens is an open-air venue with a partial canopy. The city's Latin American influence means a passionate soccer atmosphere.",
|
|
76
|
+
getting_there: "Miami International Airport (MIA) is 30 minutes from the stadium. Fort Lauderdale-Hollywood (FLL) is another option. Tri-Rail connects the airports to nearby stations; ride-share or shuttle to the stadium from there.",
|
|
77
|
+
food_and_drink: [
|
|
78
|
+
"Cuban sandwich and cafecito from Versailles in Little Havana",
|
|
79
|
+
"Fresh ceviche at a Peruvian or Colombian spot in Doral or Brickell",
|
|
80
|
+
"Stone crab claws at Joe's Stone Crab (seasonal) on South Beach",
|
|
81
|
+
"Empanadas from any of the dozens of Latin bakeries across the city",
|
|
82
|
+
],
|
|
83
|
+
things_to_do: [
|
|
84
|
+
"Stroll South Beach and the Art Deco Historic District on Ocean Drive",
|
|
85
|
+
"Visit the Wynwood Walls — a world-famous open-air street art museum",
|
|
86
|
+
"Take a day trip to the Everglades for airboat rides and wildlife",
|
|
87
|
+
"Explore Little Havana's Calle Ocho for live music, dominos, and culture",
|
|
88
|
+
],
|
|
89
|
+
local_tips: [
|
|
90
|
+
"Expect 90°F+ heat with high humidity and daily afternoon thunderstorms in summer — carry an umbrella",
|
|
91
|
+
"Hard Rock Stadium is open-air — sunscreen and water are musts for day games",
|
|
92
|
+
"Miami traffic is brutal — use ride-share pooling or arrive very early on match day",
|
|
93
|
+
],
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
venue_id: "mercedes_benz",
|
|
97
|
+
metro_area: "Atlanta",
|
|
98
|
+
highlights: "Atlanta is the cultural and economic hub of the American South, hosting a semi-final at Mercedes-Benz Stadium. The stadium's retractable roof and iconic pinwheel design make it one of the world's most impressive venues. Atlanta's diverse food scene is a highlight.",
|
|
99
|
+
getting_there: "Hartsfield-Jackson Atlanta International Airport (ATL) is the world's busiest and has a direct MARTA rail connection to downtown. Take MARTA to the Vine City or GWCC/CNN Center station — the stadium is a short walk.",
|
|
100
|
+
food_and_drink: [
|
|
101
|
+
"Southern fried chicken and waffles at Mary Mac's Tea Room or Busy Bee Cafe",
|
|
102
|
+
"Peach cobbler — a Georgia staple available at most soul food restaurants",
|
|
103
|
+
"The Buford Highway Corridor for incredible Korean, Vietnamese, and Mexican food",
|
|
104
|
+
"Craft cocktails in the Beltline-adjacent neighborhoods of Inman Park or Old Fourth Ward",
|
|
105
|
+
],
|
|
106
|
+
things_to_do: [
|
|
107
|
+
"Walk or bike the Atlanta BeltLine — a 22-mile urban trail with art installations",
|
|
108
|
+
"Visit the National Center for Civil and Human Rights and the MLK Jr. National Historic Site",
|
|
109
|
+
"Explore the Georgia Aquarium, one of the largest in the world",
|
|
110
|
+
"Check out Ponce City Market for local food, shopping, and rooftop amusements",
|
|
111
|
+
],
|
|
112
|
+
local_tips: [
|
|
113
|
+
"MARTA rail is the best way to get to the stadium — driving and parking will be a nightmare",
|
|
114
|
+
"Mercedes-Benz Stadium has a retractable roof, so weather won't be an issue inside",
|
|
115
|
+
"Atlanta summers are hot and humid (90°F+) — stay hydrated if exploring the city on foot",
|
|
116
|
+
],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
venue_id: "gillette",
|
|
120
|
+
metro_area: "Boston",
|
|
121
|
+
highlights: "Boston is one of America's oldest and most walkable cities. Gillette Stadium sits in Foxborough, about 30 miles southwest of downtown. The region is steeped in American history, world-class universities, and passionate sports fans.",
|
|
122
|
+
getting_there: "Boston Logan International Airport (BOS) serves the region. Gillette Stadium is in Foxborough — commuter rail runs on match days from Boston's South Station. Expect shuttle buses from the Foxborough station to the stadium.",
|
|
123
|
+
food_and_drink: [
|
|
124
|
+
"New England clam chowder at Legal Sea Foods or the Union Oyster House (America's oldest restaurant)",
|
|
125
|
+
"Lobster roll — available everywhere from food trucks to fine dining along the waterfront",
|
|
126
|
+
"Cannoli from Mike's Pastry or Modern Pastry in the North End (Little Italy)",
|
|
127
|
+
"Craft beer from Trillium Brewing or Tree House Brewing — world-class NE IPAs",
|
|
128
|
+
],
|
|
129
|
+
things_to_do: [
|
|
130
|
+
"Walk the Freedom Trail — a 2.5-mile route through 16 historic sites",
|
|
131
|
+
"Explore Harvard and MIT campuses in Cambridge, just across the Charles River",
|
|
132
|
+
"Visit Fenway Park, America's oldest baseball stadium",
|
|
133
|
+
"Stroll through the Boston Common and Public Garden",
|
|
134
|
+
],
|
|
135
|
+
local_tips: [
|
|
136
|
+
"Foxborough is 30+ miles from downtown Boston — don't underestimate the commute on match days",
|
|
137
|
+
"Gillette is open-air — New England weather can shift quickly, bring layers for evening games",
|
|
138
|
+
"The 'T' (subway) is useful in Boston proper but doesn't go to Foxborough — plan commuter rail or drive",
|
|
139
|
+
],
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
venue_id: "nrg",
|
|
143
|
+
metro_area: "Houston",
|
|
144
|
+
highlights: "Houston is America's most ethnically diverse city, a sprawling metropolis known for NASA, energy, and incredible food from every corner of the globe. NRG Stadium has a retractable roof — essential in Houston's brutal summer heat.",
|
|
145
|
+
getting_there: "George Bush Intercontinental Airport (IAH) is the main hub; William P. Hobby (HOU) is closer to NRG Stadium. METRORail's Purple Line stops near NRG Park. Ride-share and driving are common — Houston is very car-dependent.",
|
|
146
|
+
food_and_drink: [
|
|
147
|
+
"Vietnamese pho and banh mi along Bellaire Blvd in Chinatown/Asiatown",
|
|
148
|
+
"Texas BBQ — Killen's, Truth BBQ, or The Pit Room for brisket and ribs",
|
|
149
|
+
"Breakfast tacos — a Houston morning staple from spots like Laredo Taqueria",
|
|
150
|
+
"Nigerian, Ethiopian, and Indian food along Hillcroft Ave (the 'Mahatma Gandhi District')",
|
|
151
|
+
],
|
|
152
|
+
things_to_do: [
|
|
153
|
+
"Visit Space Center Houston — NASA's official visitor center with real spacecraft",
|
|
154
|
+
"Explore the Museum District — 19 museums, many with free admission",
|
|
155
|
+
"Walk through Hermann Park and the Houston Zoo",
|
|
156
|
+
"Browse the eclectic shops and murals of the Heights neighborhood",
|
|
157
|
+
],
|
|
158
|
+
local_tips: [
|
|
159
|
+
"Houston is extremely hot and humid in summer (95°F+) — NRG's retractable roof provides relief inside",
|
|
160
|
+
"The city is very spread out — a car or ride-share is practically essential",
|
|
161
|
+
"Drink plenty of water and take heat seriously; heat index can exceed 110°F",
|
|
162
|
+
],
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
venue_id: "arrowhead",
|
|
166
|
+
metro_area: "Kansas City",
|
|
167
|
+
highlights: "Kansas City straddles the Missouri-Kansas border and is legendary for BBQ, jazz, and passionate sports fans. Arrowhead Stadium (GEHA Field) is one of the NFL's loudest venues. The city punches well above its weight in food and culture.",
|
|
168
|
+
getting_there: "Kansas City International Airport (MCI) is 25 minutes from downtown. No rail to the stadium — ride-share, taxi, or drive. The stadium is in the Truman Sports Complex in eastern KC with large parking lots.",
|
|
169
|
+
food_and_drink: [
|
|
170
|
+
"KC-style BBQ — slow-smoked burnt ends at Joe's Kansas City, Q39, or Gates BBQ",
|
|
171
|
+
"A classic KC strip steak at one of the many steakhouses downtown",
|
|
172
|
+
"Boulevard Brewing beer — KC's flagship craft brewery with a taproom tour",
|
|
173
|
+
"Fried chicken from Stroud's — a Kansas City institution since 1933",
|
|
174
|
+
],
|
|
175
|
+
things_to_do: [
|
|
176
|
+
"Visit the National WWI Museum and Memorial — the only US museum dedicated to WWI",
|
|
177
|
+
"Explore the 18th & Vine Jazz District, birthplace of Kansas City jazz",
|
|
178
|
+
"Walk through the Country Club Plaza — America's first shopping district, built in 1922",
|
|
179
|
+
"Catch the fountains — KC has more fountains than any city outside Rome",
|
|
180
|
+
],
|
|
181
|
+
local_tips: [
|
|
182
|
+
"Arrowhead is open-air — expect heat (90°F+) and possible thunderstorms in summer",
|
|
183
|
+
"Tailgating is a big tradition at Arrowhead — the lots open hours before kickoff",
|
|
184
|
+
"The stadium area is car-dependent — plan parking or ride-share in advance",
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
venue_id: "lincoln",
|
|
189
|
+
metro_area: "Philadelphia",
|
|
190
|
+
highlights: "Philadelphia is the birthplace of American democracy and one of the Northeast's most vibrant cities. Lincoln Financial Field sits in the South Philly sports complex. Philly's food scene — from cheesesteaks to fine dining — is among the best in the US.",
|
|
191
|
+
getting_there: "Philadelphia International Airport (PHL) is 15 minutes from the stadium. SEPTA's Broad Street Line subway runs directly to the sports complex (NRG station). Amtrak and regional rail connect Philly to NYC and DC.",
|
|
192
|
+
food_and_drink: [
|
|
193
|
+
"Cheesesteak from Pat's King of Steaks, Geno's, or Jim's on South Street",
|
|
194
|
+
"Roast pork sandwich from DiNic's at Reading Terminal Market — arguably better than cheesesteaks",
|
|
195
|
+
"Soft pretzels from a street vendor — a Philly staple, best with mustard",
|
|
196
|
+
"Italian Market on 9th Street for fresh produce, pasta, and cannoli",
|
|
197
|
+
],
|
|
198
|
+
things_to_do: [
|
|
199
|
+
"Visit Independence Hall and the Liberty Bell — birthplace of the Declaration of Independence",
|
|
200
|
+
"Explore the Philadelphia Museum of Art and run the Rocky Steps",
|
|
201
|
+
"Walk through Reading Terminal Market, one of America's oldest and largest public markets",
|
|
202
|
+
"Stroll down South Street or through the murals of the Mural Arts Program",
|
|
203
|
+
],
|
|
204
|
+
local_tips: [
|
|
205
|
+
"SEPTA subway goes directly to the stadium — it's by far the easiest option on match day",
|
|
206
|
+
"Lincoln Financial Field is open-air — Philly summers are warm and humid (upper 80s°F)",
|
|
207
|
+
"Philadelphia is very walkable downtown — you can cover most historic sites on foot",
|
|
208
|
+
],
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
venue_id: "levis",
|
|
212
|
+
metro_area: "San Francisco Bay Area",
|
|
213
|
+
highlights: "The Bay Area offers world-class tech, culture, and natural beauty. Levi's Stadium in Santa Clara is in the heart of Silicon Valley, about 45 minutes south of San Francisco. Summer weather is warm and dry — ideal for outdoor matches.",
|
|
214
|
+
getting_there: "San Jose International Airport (SJC) is closest to the stadium (~10 min). San Francisco International (SFO) is 30 minutes away. Caltrain and VTA light rail connect to the stadium area. BART serves the broader Bay Area.",
|
|
215
|
+
food_and_drink: [
|
|
216
|
+
"Mission-style burritos from La Taqueria or El Farolito in SF's Mission District",
|
|
217
|
+
"Sourdough bread and clam chowder in a bread bowl at Fisherman's Wharf",
|
|
218
|
+
"Dim sum in SF's Chinatown — the oldest in North America",
|
|
219
|
+
"Farm-to-table dining — the Bay Area pioneered the movement; Chez Panisse in Berkeley is legendary",
|
|
220
|
+
],
|
|
221
|
+
things_to_do: [
|
|
222
|
+
"Walk or bike across the Golden Gate Bridge for stunning bay views",
|
|
223
|
+
"Ride a cable car through San Francisco's hilly streets",
|
|
224
|
+
"Visit Alcatraz Island — book ferry tickets well in advance",
|
|
225
|
+
"Explore Muir Woods for towering redwoods just north of the city",
|
|
226
|
+
],
|
|
227
|
+
local_tips: [
|
|
228
|
+
"Santa Clara (stadium) is much warmer than San Francisco — bring layers if heading to SF, where fog rolls in",
|
|
229
|
+
"Levi's Stadium is fully open-air — sunscreen is essential for daytime matches",
|
|
230
|
+
"Bay Area traffic is heavy — use Caltrain or VTA to avoid match-day congestion",
|
|
231
|
+
],
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
venue_id: "lumen",
|
|
235
|
+
metro_area: "Seattle",
|
|
236
|
+
highlights: "Seattle is the Pacific Northwest's cultural hub, known for coffee, tech, and stunning mountain-and-water scenery. Lumen Field sits downtown on the waterfront with views of Puget Sound. Seattle's mild summer weather makes it one of the most comfortable venues.",
|
|
237
|
+
getting_there: "Seattle-Tacoma International Airport (SEA) is 30 minutes south. Link Light Rail runs directly from the airport to downtown near the stadium. Lumen Field is walking distance from Pioneer Square and the International District.",
|
|
238
|
+
food_and_drink: [
|
|
239
|
+
"Fresh seafood at Pike Place Market — salmon, Dungeness crab, and oysters",
|
|
240
|
+
"Coffee from the original Starbucks at Pike Place, or any of Seattle's specialty roasters",
|
|
241
|
+
"Teriyaki — Seattle's unique fast-casual teriyaki joints are a local staple",
|
|
242
|
+
"Pho and banh mi in the International District, just steps from the stadium",
|
|
243
|
+
],
|
|
244
|
+
things_to_do: [
|
|
245
|
+
"Explore Pike Place Market — watch the fish throwers and browse artisan stalls",
|
|
246
|
+
"Visit the Space Needle and Chihuly Garden and Glass for iconic views",
|
|
247
|
+
"Take a ferry across Puget Sound to Bainbridge Island for a scenic half-day trip",
|
|
248
|
+
"Walk through the Museum of Pop Culture (MoPOP) for music and sci-fi exhibits",
|
|
249
|
+
],
|
|
250
|
+
local_tips: [
|
|
251
|
+
"Seattle summers are mild (low 70s°F) with long daylight — it stays light past 9pm in June",
|
|
252
|
+
"Despite the reputation, summer rain is rare — but bring a light layer for cooler evenings",
|
|
253
|
+
"Link Light Rail from the airport to downtown is cheap, fast, and drops you near the stadium",
|
|
254
|
+
],
|
|
255
|
+
},
|
|
256
|
+
// ── MEXICO (3 venues) ──────────────────────────────────────
|
|
257
|
+
{
|
|
258
|
+
venue_id: "azteca",
|
|
259
|
+
metro_area: "Mexico City",
|
|
260
|
+
highlights: "Mexico City is a massive, vibrant metropolis hosting the tournament's opening match at the legendary Estadio Azteca — the only stadium to host three World Cup opening ceremonies (1970, 1986, 2026). At 7,350 feet elevation, the thin air affects stamina and ball flight.",
|
|
261
|
+
getting_there: "Mexico City International Airport (MEX) is centrally located. The Metro is extensive, cheap, and efficient — Line 2 reaches the Azteca area (Tasqueña station, then bus/taxi). Ride-share apps Uber and DiDi work well throughout the city.",
|
|
262
|
+
food_and_drink: [
|
|
263
|
+
"Tacos al pastor from a street stand — arguably the world's greatest street food",
|
|
264
|
+
"Mole at a traditional restaurant in Coyoacán or the Centro Histórico",
|
|
265
|
+
"Churros and hot chocolate from El Moro, a classic since 1935",
|
|
266
|
+
"Mezcal at one of the craft mezcalerías in Roma Norte or Condesa",
|
|
267
|
+
],
|
|
268
|
+
things_to_do: [
|
|
269
|
+
"Visit the Museo Nacional de Antropología — one of the world's great museums",
|
|
270
|
+
"Explore the ancient pyramids of Teotihuacán, 30 miles northeast of the city",
|
|
271
|
+
"Stroll through Chapultepec Park and Castle — larger than Central Park",
|
|
272
|
+
"Wander the colorful streets of Coyoacán and visit the Frida Kahlo Museum",
|
|
273
|
+
],
|
|
274
|
+
local_tips: [
|
|
275
|
+
"The altitude (7,350 ft) can cause fatigue and headaches — take it easy the first day and stay hydrated",
|
|
276
|
+
"Tap water is not safe to drink — buy bottled water or use a purification bottle",
|
|
277
|
+
"Mexico City is enormous — use the Metro and ride-share rather than trying to walk between neighborhoods",
|
|
278
|
+
],
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
venue_id: "akron",
|
|
282
|
+
metro_area: "Guadalajara",
|
|
283
|
+
highlights: "Guadalajara is Mexico's second-largest city and the birthplace of mariachi and tequila. Estadio Akron (Chivas stadium) is a modern venue on the city's outskirts. The city combines colonial architecture with a thriving arts and food scene.",
|
|
284
|
+
getting_there: "Guadalajara International Airport (GDL) is 30 minutes from the stadium. Uber and DiDi are reliable. The city has a two-line light rail system, but the stadium is best reached by car or ride-share from the city center.",
|
|
285
|
+
food_and_drink: [
|
|
286
|
+
"Birria — Guadalajara's signature slow-cooked goat or beef stew, served with consommé",
|
|
287
|
+
"Torta ahogada — a pork sandwich drowned in spicy tomato sauce, a Guadalajara original",
|
|
288
|
+
"Tequila tasting — Jalisco is tequila country; visit a distillery or sample at local bars",
|
|
289
|
+
"Tejuino — a refreshing fermented corn drink with lime and salt, sold by street vendors",
|
|
290
|
+
],
|
|
291
|
+
things_to_do: [
|
|
292
|
+
"Explore the historic Centro with its cathedral, Hospicio Cabañas (UNESCO site), and plazas",
|
|
293
|
+
"Day trip to the town of Tequila — ride the Tequila Express train through agave fields",
|
|
294
|
+
"Visit Tlaquepaque for artisan crafts, galleries, and mariachi music in the plazas",
|
|
295
|
+
"Catch a Chivas match atmosphere at the bars and restaurants near Estadio Akron",
|
|
296
|
+
],
|
|
297
|
+
local_tips: [
|
|
298
|
+
"Guadalajara's rainy season peaks in June-July — expect warm days with afternoon thundershowers",
|
|
299
|
+
"The city sits at 5,100 ft elevation — milder than the coast but bring sun protection",
|
|
300
|
+
"Spanish is essential outside tourist areas — download an offline translation app",
|
|
301
|
+
],
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
venue_id: "bbva",
|
|
305
|
+
metro_area: "Monterrey",
|
|
306
|
+
highlights: "Monterrey is Mexico's industrial and business capital, set dramatically against the Sierra Madre mountains. Estadio BBVA in Guadalupe is one of North America's most modern football-specific stadiums. The city is known for its grilled meat culture and mountain scenery.",
|
|
307
|
+
getting_there: "Monterrey International Airport (MTY) is 30 minutes from the stadium. Uber and DiDi are the easiest transit options. The city has a Metro system with two lines, but the stadium is best reached by car or ride-share.",
|
|
308
|
+
food_and_drink: [
|
|
309
|
+
"Cabrito (roasted kid goat) — Monterrey's signature dish, slow-roasted over mesquite",
|
|
310
|
+
"Carne asada — Monterrey takes grilled beef seriously; try it at any local restaurant",
|
|
311
|
+
"Machaca — dried shredded beef with eggs, a traditional Norteño breakfast",
|
|
312
|
+
"Craft beer from the Barrio Antiguo brewery scene — Monterrey has a growing craft beer culture",
|
|
313
|
+
],
|
|
314
|
+
things_to_do: [
|
|
315
|
+
"Hike or take the cable car to the top of Cerro de la Silla for panoramic mountain views",
|
|
316
|
+
"Visit the MARCO museum (Museo de Arte Contemporáneo) in the Macroplaza",
|
|
317
|
+
"Explore the Barrio Antiguo — cobblestone streets with bars, restaurants, and nightlife",
|
|
318
|
+
"Take a day trip to Grutas de García — dramatic caves and formations in the Sierra Madre",
|
|
319
|
+
],
|
|
320
|
+
local_tips: [
|
|
321
|
+
"Monterrey summer heat is extreme (95°F+) — schedule outdoor activities for early morning or evening",
|
|
322
|
+
"The city is very spread out and car-dependent — ride-share apps are your best bet",
|
|
323
|
+
"Tap water is not safe to drink — stick to bottled or purified water",
|
|
324
|
+
],
|
|
325
|
+
},
|
|
326
|
+
// ── CANADA (2 venues) ──────────────────────────────────────
|
|
327
|
+
{
|
|
328
|
+
venue_id: "bmo",
|
|
329
|
+
metro_area: "Toronto",
|
|
330
|
+
highlights: "Toronto is Canada's largest city and one of the world's most multicultural. BMO Field sits on the lakefront at Exhibition Place. The city's neighborhoods — from Kensington Market to Little Italy to Chinatown — offer an incredible range of food and culture.",
|
|
331
|
+
getting_there: "Toronto Pearson International Airport (YYZ) is the main hub, connected by UP Express train to downtown Union Station (25 min). Billy Bishop Airport (YTZ) is on the waterfront near BMO Field. TTC streetcars and buses serve Exhibition Place directly.",
|
|
332
|
+
food_and_drink: [
|
|
333
|
+
"Peameal bacon sandwich at Carousel Bakery in St. Lawrence Market — a Toronto original",
|
|
334
|
+
"Poutine — fries, gravy, and cheese curds; try it at Smoke's Poutinerie or any diner",
|
|
335
|
+
"Dim sum in Chinatown or Markham — Toronto's Chinese food rivals any city outside Asia",
|
|
336
|
+
"Patties from a Jamaican bakery on Eglinton West — Toronto's Caribbean community is huge",
|
|
337
|
+
],
|
|
338
|
+
things_to_do: [
|
|
339
|
+
"Visit the CN Tower for panoramic views and the glass-floor EdgeWalk experience",
|
|
340
|
+
"Explore the diverse neighborhoods: Kensington Market, Queen West, Distillery District",
|
|
341
|
+
"Walk the Toronto Islands — a car-free park with beaches and skyline views, reached by ferry",
|
|
342
|
+
"Browse the Royal Ontario Museum or the Art Gallery of Ontario",
|
|
343
|
+
],
|
|
344
|
+
local_tips: [
|
|
345
|
+
"BMO Field is compact (45,000 expanded capacity) and open-air — arrive early for best experience",
|
|
346
|
+
"Toronto summers are warm and pleasant (high 70s-80s°F) — enjoy the long lakefront evenings",
|
|
347
|
+
"The TTC (subway, streetcar, bus) covers the city well — a day pass is good value for visitors",
|
|
348
|
+
],
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
venue_id: "bc_place",
|
|
352
|
+
metro_area: "Vancouver",
|
|
353
|
+
highlights: "Vancouver is consistently ranked among the world's most livable cities, nestled between mountains and the Pacific Ocean. BC Place's retractable roof ensures matches happen rain or shine. The city's natural beauty and Asian food scene are world-class.",
|
|
354
|
+
getting_there: "Vancouver International Airport (YVR) connects to downtown via the Canada Line SkyTrain (25 min). BC Place is in the heart of downtown, steps from Stadium-Chinatown SkyTrain station. Walking and transit are easy for the entire downtown core.",
|
|
355
|
+
food_and_drink: [
|
|
356
|
+
"Sushi and ramen — Vancouver's Japanese food scene rivals cities outside Japan",
|
|
357
|
+
"Dim sum in Richmond — a quick SkyTrain ride to some of the best Chinese food in North America",
|
|
358
|
+
"Salmon — wild BC salmon is legendary; try it smoked, grilled, or as sashimi",
|
|
359
|
+
"Japadog — a Vancouver original: Japanese-style hot dogs from the famous food cart",
|
|
360
|
+
],
|
|
361
|
+
things_to_do: [
|
|
362
|
+
"Walk or bike the Stanley Park Seawall — a 5.5-mile loop with mountain and ocean views",
|
|
363
|
+
"Visit Granville Island for its public market, artisan shops, and waterfront dining",
|
|
364
|
+
"Take the Sea to Sky Gondola to Squamish or drive to Whistler for stunning mountain scenery",
|
|
365
|
+
"Explore Gastown's cobblestone streets and the famous steam clock",
|
|
366
|
+
],
|
|
367
|
+
local_tips: [
|
|
368
|
+
"Vancouver summers are mild and dry (low 70s°F) — one of the most comfortable venues in the tournament",
|
|
369
|
+
"BC Place has a retractable roof, so weather is never an issue for matches",
|
|
370
|
+
"The SkyTrain is fast, clean, and goes directly to the stadium — skip the car entirely",
|
|
371
|
+
],
|
|
372
|
+
},
|
|
373
|
+
];
|