imgsearch MCP Tool

基于文本查询的图片搜索工具 — 测试接口面板

API Endpoint

POST /api/search

Base URL: http://localhost:5000

How to Use

Send a POST request with JSON body:

POST /api/search
Content-Type: application/json

{
  "query":       "mountain sunset",      // required
  "max_results": 20,                    // optional, default 20
  "provider":    "baidu",                 // optional: baidu | bing
  "filters":     { "orientation": "landscape" }  // optional
}
ParameterTypeRequiredDescription
querystringYesSearch query text (1-500 chars)
max_resultsintegerNoMax results (1-100, default 20)
providerstringNoSearch provider: baidu (default) or bing
filtersobjectNo{orientation, color}

cURL: curl -X POST http://localhost:5000/api/search -H "Content-Type: application/json" -d '{"query":"cat"}'

Test Search

Available Providers

Loading...