@openplaces/mcp
v0.2.3
Published
Look up places, businesses, addresses, and location metadata without a proprietary places API.
Maintainers
Readme
npm install openplacesclaude mcp add openplaces -- npx -y @openplaces/mcp@latestimport { OpenPlaces } from "openplaces";
const client = new OpenPlaces();await client.places.search("eiffel tower");
await client.places.search("restaurants in tokyo", { limit: 10 });
await client.places.search("coffee and tea in paris or london", { limit: 40 });const stream = client.places.stream("restaurants in tokyo", { limit: 200 });
for await (const place of stream) {
console.log(place.name);
}