local-places

Search nearby places via a local Google Places API proxy with filters.

Updated Feb 1, 2026
One-click install
npx skills add https://github.com/Sugamdeol/moltbot-with-pollinations.ai --skill local-places-sugamdeol
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: local-places
Source: https://github.com/Sugamdeol/moltbot-with-pollinations.ai/tree/main/skills/local-places
Command: npx skills add https://github.com/Sugamdeol/moltbot-with-pollinations.ai --skill local-places-sugamdeol

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Local Places provides a lightweight way to discover nearby venues (restaurants, cafes, etc.) by routing queries through a local Google Places API proxy on localhost, removing dependence on external services and API keys.

Core Features & Use Cases

  • Resolve a user location and then search for places with filters like type, open_now, min_rating, and price_levels.
  • Retrieve concise summaries for each place, including name, address, location, rating, and basic types to support quick decision-making.
  • Use cases include building location-aware assistants, travel planning tools, or storefront discovery within a local network.

Quick Start

Start the FastAPI server locally and query the endpoints to find places.

Frequently Asked Questions about local-places

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search for nearby places using a local Google Places API proxy?

To search for nearby places using a local Google Places API proxy, start a FastAPI server with uvicorn and query its endpoints. Resolve a location first, then apply filters like type, open_now, min_rating, and price_levels to retrieve structured results.

Do I need a Google Places API key to find local places through a FastAPI proxy?

Yes, finding local places through this FastAPI proxy requires a GOOGLE_PLACES_API_KEY environment variable. The local server routes your queries through this key, removing direct dependence on external services during your development workflow.

Can I filter Google Places location search results for cafes and restaurants?

You can filter Google Places location search results for cafes and restaurants by applying type, open_now, min_rating, and price_levels parameters. The proxy returns concise summaries including name, address, rating, and basic types for quick decision-making.

What is the workflow for retrieving place details from a localhost API proxy?

The workflow for retrieving place details from a localhost API proxy involves two steps: resolve a user location first, then search for venues. This structured approach ensures accurate nearby place discovery within a local development network.

Does the local-places proxy work without external API dependencies during local development?

The local-places proxy removes dependence on external services and API keys during local development by routing queries through localhost. However, it still requires a valid GOOGLE_PLACES_API_KEY environment variable to fetch Google Places data.

Why use a FastAPI server for Google Places location search instead of direct API calls?

Using a FastAPI server for Google Places location search provides a lightweight local proxy that removes direct external service dependence. It supports structured two-step location resolution and filtered venue discovery within a local network environment.