[ ⌘K ]
← BACK TO SEARCH

v5tech/mcp-server-location

critical

A location server based on MCP (Model Context Protocol) that provides IP address location and latitude/longitude query functionality.

This MCP server provides location-based services by querying IP addresses for geographic location and converting latitude/longitude coordinates into d...

purpose: This MCP server provides location-based services bthreat: network exposed
JavaScript0May 20, 2026May 20, 2026GITHUB
mcpmcp-servermodelcontextprotocol
5/20/2026
high2 findings
src/index.ts
148async function handleIpLocation(params: { ip: string }) {
149  const data = await fetchLocationApi(
150    `https://apimobile.meituan.com/locate/v2/ip/loc?rgeo=true&ip=${params.ip}`
151  ) as IpLocationResponse;
high2 findings
src/index.ts
154async function handleLatLngLocation(params: { lat: number; lng: number }) {
155  const data = await fetchLocationApi(
156    `https://apimobile.meituan.com/group/v1/city/latlng/${params.lat},${params.lng}?tag=0`
157  ) as LatLngLocationResponse;
network.httpshell.execauth.none
90
LLM-based
high findings+75
medium findings+15