web_search
ActiveTool of LMX Cloud LLM Inference
declared in 0.4.0
Real-time web search via LMX (Brave Search passthrough). Fixed per-call USDC price from the caller's API key balance. Returns title/url/snippet results.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"minLength": 1,
"description": "Search query string."
},
"api_key": {
"type": "string",
"pattern": "^lmx_[0-9a-f]{32}$",
"description": "Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call."
},
"max_results": {
"type": "integer",
"maximum": 20,
"minimum": 1,
"description": "Max results to return (1–20, default 5)."
}
},
"additionalProperties": false
}Parent server
LMX Cloud LLM Inference
1/7 registries