{
"name": "searchapi_bing",
"description": "Bing Search results from SearchApi, as structured JSON.",
"input_schema": {
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "Search query; most engines accept native operators and advanced filters."
},
"device": {
"type": "string",
"description": "Device to emulate for the search.",
"enum": [
"desktop",
"mobile",
"tablet"
],
"default": "desktop"
},
"mkt": {
"type": "string",
"description": "Market of the search, e.g. en-US."
},
"language": {
"type": "string",
"description": "Language of the results; values listed at docs/parameters/bing/language."
},
"safe_search": {
"type": "string",
"description": "Adult content filtering level.",
"enum": [
"strict",
"moderate",
"off"
]
},
"page": {
"type": "integer",
"description": "Page number of the results.",
"default": 1
},
"num": {
"type": "integer",
"description": "Number of results per page."
}
},
"required": [
"q"
],
"examples": [
{
"q": "coffee"
}
]
}
}
Paste the definition into your own agent's tools array. The schema is generated from this engine's catalog entry, and the reader's configured values ride in the schema's examples. The name is ours rather than the MCP server's — it is what your agent will call — and every engine's is prefixed searchapi_.