Via MCP or REST API, Claude, Cursor, Gemini CLI, and ChatGPT can query ProcureRadar in real time. Gemini web has no custom API — use Gemini CLI; ChatGPT uses GPT Actions + OpenAPI.
Mirrors the human UX exactly: L1 discovery is free; buyer intelligence and contact unlock cost Zhimao Points, preventing bulk scraping and preserving data value.
GET /api/agent/v1/buyersSearch global buyers by category + country. Returns company name, location, quality grade. Free, no points consumed.
POST /api/ai-ops/skills/execute{ "skill_id": "company_intelligence" }Get domain, procurement score, buying intent, registry data, news signals. Costs Zhimao Points.
POST /api/ai-ops/skills/execute{ "skill_id": "enrich_contact" }6-layer contact pipeline: homepage → proxy → subpages → text LLM → vision screenshot → Serper fallback. Costs points.
GET /api/agent/v1/group-buyList open group-buy pooling projects with category, MOQ, fill rate, deadline. ERP auto-join supported.
Config: %APPDATA%\Claude\claude_desktop_config.json Add mcpServers.procureradar → url + Authorization header
Config: ~/.cursor/mcp.json Same format as Claude Desktop.
npm install -g @google/gemini-cli ~/.gemini/settings.json → httpUrl (not url) Or gemini mcp add --transport http …
Custom GPT → Actions → Import OpenAPI https://www.procureradar.com/v1/openapi.yaml Auth: Bearer zk_xxx
HTTP Request node → GET /api/agent/v1/buyers Header: Authorization: Bearer zk_xxx
Call REST API in any language. Authorization: Bearer zk_xxx
{
"mcpServers": {
"procureradar": {
"url": "https://www.procureradar.com/api/mcp",
"headers": {
"Authorization": "Bearer zk_YOUR_TOKEN_HERE"
}
}
}
}Gemini App / Gems cannot import custom APIs like GPT Actions. Google's Gemini CLI agent supports MCP natively — same tier as Claude/Cursor. Requires Node.js.
npm install -g @google/gemini-cli
{
"mcpServers": {
"procureradar": {
"httpUrl": "https://www.procureradar.com/api/mcp",
"headers": {
"Authorization": "Bearer zk_YOUR_TOKEN_HERE"
}
}
}
}gemini mcp add --transport http -H "Authorization: Bearer zk_YOUR_TOKEN_HERE" procureradar https://www.procureradar.com/api/mcp
⚠️ Only difference from Claude/Cursor: use httpUrl, not url. Run gemini in terminal and ask naturally — find_buyers and other tools are invoked automatically.
Custom GPT → Configure → Actions → Import from URL. Authentication: API Key, Header Authorization, Value Bearer zk_YOUR_TOKEN.
https://www.procureradar.com/v1/openapi.yaml
Then ask ChatGPT: "Find textile importers in Vietnam." Discovery is free; intel/contact use skills/execute (Zhimao Points).
Sign in to ProcureRadar, go to Workspace → API Key Management, and create your first zk_ token in 30 seconds.
Go to Workspace & Create Key →