minradar· for agents

Use minradar from your agent

Three ways in, all read-only over HTTPS. No API key today; no local install for MCP.

1 · Remote MCP (works with any MCP client)

https://minradar.com/mcp

JSON-RPC over HTTP. Tools: find_unmet_demand · validate_paying_market · get_opportunity_brief · generate_app_brief · search_open_source_accelerators · explain_method · market_stats

HarnessCommand / config
Claude Codeclaude mcp add --transport http minradar https://minradar.com/mcp
Codex CLI[mcp_servers.minradar]
url = "https://minradar.com/mcp"
in ~/.codex/config.toml
Cursor{"mcpServers": {"minradar": {"url": "https://minradar.com/mcp"}}} in .cursor/mcp.json
No MCP supportuse the CLI or plain curl below

2 · HTTPS + OpenAPI

GET https://minradar.com/openapi.json        # contract, ready for tool-calling models
GET https://minradar.com/api/lens/unmet_demand?storefront=cn&limit=5
GET https://minradar.com/api/app/6450545056?with_github=false
GET https://minradar.com/api/app/6450545056/prompt?target=claude   # markdown, paste-ready

3 · Shell CLI (for harnesses that prefer commands)

curl -sO https://minradar.com/minradar && chmod +x minradar
./minradar find --storefront cn --limit 5
./minradar brief 6450545056 --target codex

What an agent should know