baidu-poi-search

baidu-poi-search is a skill for Claude Code, Codex from desirecore/market. It costs 92 tokens per session (1,796 once invoked), scanned A, original, MIT.

A company-location search tool using Baidu Maps, a Chinese online mapping service. Give it a company name to find place records with names, addresses, coordinates, regions, and branch locations.

In plain words
What is it for?
Use it to find a company’s offices, branches, map positions, addresses, and nearby business locations.
Why use it?
It avoids looking up each branch or address manually and returns location information in a consistent format. It requires a Baidu Maps access key unless the service is already connected through the local catalog.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to find a company’s offices, branches, map positions, addresses, and nearby business locations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/desirecore/market/baidu-poi-search
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add desirecore/market --skill baidu-poi-search
Clone the repo
git clone --depth 1 https://github.com/desirecore/market

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for baidu-poi-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/desirecore/market/baidu-poi-search/github.svg)](https://agentmods.dev/skills/desirecore/market/baidu-poi-search)
Your own site
<a href="https://agentmods.dev/skills/desirecore/market/baidu-poi-search"><img src="https://agentmods.dev/badge/skills/desirecore/market/baidu-poi-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for baidu-poi-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/desirecore/market/baidu-poi-search"><img src="https://agentmods.dev/badge/skills/desirecore/market/baidu-poi-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,796 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00092 $0.01796
Opus 5 $0.00046 $0.00898
Sonnet 5 $0.00018 $0.00359
Haiku 4.5 $0.00009 $0.00180

Measured 6d ago against content hash fdcf76d026a5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

baidu-poi-search scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **Invocation**: HTTP GET (curl / HttpRequest tool)
skills/baidu-poi-search/SKILL.md · 153 lines

How it starts

The opening of the file, as written. The whole thing — 153 lines — stays where its author put it; the contents beside it link to each section on GitHub.

L0: One-Sentence Summary

Input a company name, call the Baidu Map Place Search API, and return normalized POI data (name / address / coordinates / province & city).

L1: Overview

  • Data source: Baidu Map Open Platform Place Search API v2
  • Auth: AK (free quota for individual developers)
  • Invocation: HTTP GET (curl / HttpRequest tool)
  • Prerequisites: no browser, no extra dependencies — pure REST API

Credential Setup

This skill requires a Baidu Map AK (access key):

  1. Register a developer account at the Baidu Map Open Platform
  2. Console → App Management → Create an app (enable the "Place Search" service; choose the empty-whitelist 0.0.0.0/0 AK type)
  3. Export the AK as the environment variable BAIDU_MAP_AK, or replace the {BAIDU_MAP_AK} placeholder in the commands below

If the local DesireCore service catalog already registers the Baidu Map service (endpoint https://api.map.baidu.com), prefer calling it through the catalog so credentials are managed centrally.

L2: Procedure

1. Build the request

curl -s --max-time 15 --ssl-no-revoke \
  "https://api.map.baidu.com/place/v2/search?query={company-name-URL-encoded}&region={city-or-nationwide}&output=json&page_size=20&ak=${BAIDU_MAP_AK}"

Parameters:

Param Value Notes
query Company name (URL-encoded) e.g. 华为技术有限公司%E5%8D%8E%E4%B8%BA%E6%8A%80%E6%9C%AF%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8
region City name or 全国 (nationwide) Scope; use nationwide when unsure
output json Fixed
page_size 20 Max 20 per page
ak {BAIDU_MAP_AK} Baidu Map AK (free for individual developers)

2. Interpret the response

  • status == 0: success, extract results[]
  • status != 0: failure, check message (101 = AK missing, 200 = AK disabled, 302 = quota exceeded)

3. Normalized mapping

Map each entry in results[] to:

{
  "source": "baidu-poi",
  "company_name": "{user input}",
  "poi_name": "{result.name}",
  "address": "{result.address}",
  "latitude": "{result.location.lat}",
  "longitude": "{result.location.lng}",
  "province": "{result.province}",
  "city": "{result.city}"
}

Read the full file on GitHub · 153 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 153 lines · 92 tokens per session scan A fdcf76d026a5

Subscribe to this mod's changes

baidu-poi-search is a skill published in the GitHub repository desirecore/market (2 stars, last pushed today), licensed MIT. It adds 92 tokens to every session and 1,796 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

map-blockout

Procedurally design an AAA-style open-world FPS map blockout (roads, POIs, fields, forests/treelines, railway/bridges) from a landscape, validate it through gated checks, and materialize it into engine geometry. Use when the user asks to block out or lay out an open-world/FPS map, place roads/POIs/forests/railways…

kevinpbuckley/VibeUE · 104 tokens

investor-materials

Use when packaging or circulating the documents an investor reads outside the meeting — setting up or cleaning a data room, writing the one-pager or teaser that earns the first meeting, or drafting the recurring monthly investor update. NOT the slide narrative (that is pitch-deck), NOT the projection spreadsheet (that…

ericrisco/rsc-harness · 87 tokens

delivering-the-deal

Provides the complete execution toolkit for closing negotiations: a 21-point preparation checklist, a framework for overcoming obstacles and disarming tactics, and the three-part satisfaction model for durable agreements. Includes a self-assessment instrument for measuring negotiation competence. Use when preparing…

fatihguner/foreman · 92 tokens

get-financials

Pull the most recent annual accounts of a known company and extract the headline financial figures: revenue / turnover, operating profit, net income, total assets, equity, cash, and (where filed) employee count. Source is the registry's filing archive, raw iXBRL / XBRL / PDF bytes. Use when the user asks 'what's the…

sophymarine/openregistry · 130 tokens

Australia — ABR / ASIC Lookup

Live, real-time queries to Australian Business Register (ABR — ABN Lookup) (Australia). Drops the OpenRegistry MCP toolset onto a single-country workflow when the user names ABR / ASIC, the country, or its registry directly. ID format: 11-digit ABN or 9-digit ACN (e.g. ABN 33 123 456 789, ACN 004 028 077 for BHP Group…

sophymarine/openregistry · 0 tokens

Belgium — KBO/BCE Lookup

Live, real-time queries to KBO/BCE — Crossroads Bank for Enterprises (Belgium). Drops the OpenRegistry MCP toolset onto a single-country workflow when the user names KBO/BCE, the country, or its registry directly. ID format: 10-digit Belgian enterprise number (e.g. 0403.201.185 formatted, 0403201185 raw …

sophymarine/openregistry · 0 tokens