{"name":"io.lmxcloud/mcp-server","slug":"lmxcloud-mcp-server","title":"LMX Cloud LLM Inference","description":"OpenAI-compatible LLM MCP (7 tools); chat via balance key or x402 USDC on Base","url":"https://mcp.market/server/lmxcloud-mcp-server","rating":null,"grade":"C","score":67,"certified":false,"status":"active","category":"ai","tags":["ai"],"presence":{"score":5,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":28,"ok":28,"last_checked_at":"2026-09-27T12:40:59.272Z","last_ok_at":"2026-09-27T12:40:59.272Z","latency_ms":239},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":null,"version":"0.1.0","remotes":[{"type":"streamable-http","url":"https://mcp.lmxcloud.io/mcp"}],"packages":[],"tools":[{"name":"chat_completion","description":"Call LMX Cloud OpenAI-compatible chat completions. Prefers a pre-funded API key (Bearer / api_key); when omitted and x402 is enabled, requires a USDC pay-per-call payment. Optional image_url / images enable vision input (OpenAI content-parts format) — use a vision model such as llama-3.2-90b-vision, qwen-3.6-35b, or qwen-3.5-35b.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"prompt":{"type":"string","minLength":1,"description":"User prompt to send to the selected model."},"image_url":{"type":"string","minLength":1,"description":"Optional image as an https URL or data:image/...;base64,... URI. Requires a vision-capable model."},"images":{"type":"array","items":{"type":"string","minLength":1},"description":"Optional additional images (https URLs or data:image/...;base64,... URIs). Requires a vision-capable model."},"model":{"type":"string","description":"Optional model name or alias. Uses default if omitted."},"max_tokens":{"type":"integer","exclusiveMinimum":0,"maximum":4096,"description":"Optional max completion tokens."},"temperature":{"type":"number","minimum":0,"maximum":2,"description":"Optional sampling temperature."},"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."}},"required":["prompt"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"extract_pdf","description":"Extract text and light structure (title, headings, page count) from a PDF via LMX pdf-extract. Provide file_url and/or file_base64. Requires a real LMX API key (same gate as web_search).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"file_url":{"type":"string","minLength":1,"description":"Optional https URL to fetch the PDF from. Provide this and/or file_base64."},"file_base64":{"type":"string","minLength":1,"description":"Optional base64-encoded PDF bytes (raw base64 or data:application/pdf;base64,...). Provide this and/or file_url."},"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."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_balance","description":"Fetch USD credit balance for the caller API key. Requires authentication.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"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."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_pricing","description":"Fetch current LMX Cloud per-call pricing catalog.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"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."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_status","description":"Fetch LMX Cloud provider health, fallback chain, and anchoring status.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"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."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_usage","description":"Fetch request and token usage totals for the caller API key. Requires authentication.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"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."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"list_models","description":"List currently supported LMX model aliases and providers.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"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."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"quote_price","description":"Estimate USDC cost for a single model call. Uses GET /v1/pricing with model and token params.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"model":{"type":"string","minLength":1,"description":"Model alias to quote (e.g. llama-3-70b)."},"max_tokens":{"type":"integer","exclusiveMinimum":0,"maximum":4096,"description":"Optional max completion tokens for the quote."},"prompt_tokens":{"type":"integer","exclusiveMinimum":0,"maximum":128000,"description":"Optional estimated prompt tokens (default: 1)."},"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."}},"required":["model"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"web_search","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"type":"string","minLength":1,"description":"Search query string."},"max_results":{"type":"integer","minimum":1,"maximum":20,"description":"Max results to return (1–20, default 5)."},"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."}},"required":["query"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":67,"grade":"C","scanned_at":"2026-09-25T21:45:55.857Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-25T21:45:55.846Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 919ms"]},"poisoning":{"score":15,"max":15,"notes":["9 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://mcp.lmxcloud.io/mcp","reachable":true,"authRequired":false,"latencyMs":919,"serverInfo":{"name":"lmxcloud-mcp","version":"0.4.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://www.lmxcloud.io/apple-touch-icon.png","source":"site","width":180,"height":180},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":5}}}},"grade_history":[],"reviews":[]}