Restaurant & Activity Finder
Searches for restaurants, cafes, and activities near a location using Brave Search and local search. Returns curated recommendations with ratings, prices, and map links. Prerequisites: brave-search MCP.
MCP get_skill({ skillId: "restaurant-activity-finder-f4f4f83c" })Use this skill with your agent
Create a free account and connect via MCP
# Restaurant & Activity Finder
Find great restaurants, cafes, and activities near any location using Brave Search. Returns curated results with ratings, prices, and direct links.
## When to Use
- "Find good restaurants near my hotel in Rome"
- "What's the best ramen in Tokyo Shibuya?"
- "Things to do near Central Park this weekend"
## Requirements
- **Brave Search MCP** (web search + local search)
- Filesystem for saving recommendations
## Workflow
### Step 1 — Parse the Request
Extract:
- **Location** (city, neighborhood, or specific address)
- **Type** (restaurant, cafe, bar, museum, outdoors, nightlife)
- **Cuisine/category** (if restaurant)
- **Budget** (cheap, moderate, upscale)
- **Time** (lunch, dinner, weekend brunch, late night)
- **Dietary needs** (vegetarian, halal, gluten-free)
### Step 2 — Search with Brave
```
brave_web_search: "best {CUISINE} restaurants in {NEIGHBORHOOD} {CITY} {YEAR}"
brave_web_search: "{RESTAURANT_TYPE} near {LOCATION} highly rated"
brave_local_search: "{CUISINE} restaurant {CITY}" (if brave_local_search available)
brave_web_search: "{CITY} {NEIGHBORHOOD} things to do {DAY_OF_WEEK}"
```
For dietary needs:
```
brave_web_search: "best {DIETARY} restaurants {CITY} {NEIGHBORHOOD}"
```
### Step 3 — Curate & Format Results
For each recommendation, find:
- Name, cuisine type, price range ($ to $$$$)
- Address with Google Maps link
- Rating (from Google/TripAdvisor/Yelp if found)
- What to order (signature dishes)
- Reservation needed? (link to OpenTable/Resy if applicable)
```markdown
# Restaurants: {CUISINE} in {NEIGHBORHOOD}, {CITY}
## 🥇 Top Pick: {Restaurant Name}
- 🍽️ {Cuisine} | 💰 {$$} | ⭐ {Rating}
- 📍 {Address} — [Google Maps](https://maps.google.com/?q={encoded_address})
- 🕐 Open: {hours}
- 💡 Must try: {signature dish}
- 📱 [Reserve on OpenTable](URL) | [Website](URL)
## 🥈 {Restaurant 2}
...
## 🥉 {Restaurant 3}
...
## Also Worth Trying
- **{Restaurant 4}** — {1-line description} [Maps](URL)
- **{Restaurant 5}** — {1-line description} [Maps](URL)
```
### Step 4 — Save Recommendations
```bash
mkdir -p outputs/travel
cat > "outputs/travel/restaurants-{city}-{neighborhood}.md" << 'EOF'
{RECOMMENDATIONS}
EOF
```
## Important Rules
- Always use Brave Search for current data — restaurants open and close frequently
- Include Google Maps links for every venue
- Note if a place requires reservations
- Mention any dress codes for upscale venues
- Flag if a place is tourist-trap vs. local favorite
## Example Prompts
- "Find the best pizza near my hotel in Trastevere, Rome"
- "Vegetarian-friendly restaurants in East Village NYC under $30/person"
- "What should I do in Kyoto on a rainy day?"
- "Best coffee shops to work from in Lisbon"Related Skills
More skills in Travel & Logistics
Flight & Hotel Price Research
Researches flight and hotel prices via Brave Search, compares options across booking sites, and generates a comparison table with direct booking links. Prerequisites: brave-search MCP.
Smart Packing List Generator
Researches weather forecasts and destination requirements via Brave Search, then generates a context-aware packing checklist stored as a trackable markdown file. Prerequisites: brave-search MCP.
Travel Budget Calculator & Tracker
Researches real costs at your destination via Brave Search, builds a detailed budget estimate with currency conversion, and creates a trackable expense spreadsheet. Prerequisites: brave-search MCP, python3.
Trip Research & Itinerary Planner
Researches destinations via Brave Search, builds day-by-day itineraries with real venues, and generates a shareable travel plan with maps links and booking URLs. Prerequisites: brave-search MCP, jq.
Explore Other Categories
Skills from other categories with shared topics
Book-to-Action Notes Generator
Researches a book's key ideas via Brave Search, generates structured chapter summaries with actionable takeaways, and creates an implementation checklist. Prerequisites: brave-search MCP.
Company Due Diligence Researcher
Conducts comprehensive research on a company via Brave Search covering financials, leadership, culture, news, and competitive landscape. Generates a diligence brief for job seekers, investors, or partners. Prerequisites: brave-search MCP, python3.
Competitor Analysis Report
Researches competitors via Brave Search and builds a comprehensive competitive landscape analysis with positioning, pricing, strengths/weaknesses, and strategic recommendations. Prerequisites: brave-search MCP, python3.