LMX Cloud LLM Inference
Server Details
OpenAI-compatible LLM MCP (7 tools); chat via balance key or x402 USDC on Base
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 8 of 8 tools scored.
Each tool has a clearly distinct purpose: chat completion, balance, pricing, status, usage, models, cost estimation, and web search. No two tools perform overlapping functions.
All tools follow a consistent snake_case verb_noun pattern (e.g., chat_completion, get_balance, list_models). No mixing of conventions.
8 tools is well-scoped for a cloud LLM inference server, covering core operations (chat, models, pricing, usage, balance, status) plus a web search add-on. Not excessive or too sparse.
The tool set covers essential LLM inference and account management workflows. Minor gaps exist (e.g., no streaming parameter docs, no model detail retrieval), but the core surface is complete.
Available Tools
8 toolschat_completionAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Optional model name or alias. Uses default if omitted. | |
| images | No | Optional additional images (https URLs or data:image/...;base64,... URIs). Requires a vision-capable model. | |
| prompt | Yes | User prompt to send to the selected model. | |
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. | |
| image_url | No | Optional image as an https URL or data:image/...;base64,... URI. Requires a vision-capable model. | |
| max_tokens | No | Optional max completion tokens. | |
| temperature | No | Optional sampling temperature. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries burden. It discloses authentication preferences, payment options, and vision requirements. It does not state non-destructive nature or rate limits, but the information given is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: first states core function, second adds critical details on auth and vision. No wasted words, front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 7 parameters, no output schema, and no annotations, the description covers core functionality but lacks explanation of return values or error handling. Could be more complete, especially since no output schema exists.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% so baseline is 3. Description adds extra context: authentication preferences, vision model names, and clarifies that images/url require vision model. Adds value beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Call' and resource 'LMX Cloud OpenAI-compatible chat completions', and distinguishes from sibling tools like get_balance or web_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides context for when to use (chat completions), mentions authentication options and vision capability, but does not explicitly contrast with alternatives or provide when-not-to-use scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_balanceBInspect
Fetch USD credit balance for the caller API key. Requires authentication.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description only mentions it fetches balance and requires authentication, but does not disclose idempotency, error behavior, rate limits, or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short sentence, no fluff. Front-loaded with action and resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Simple tool with one optional param and no output schema. Description states action and auth requirement, but omits return format (e.g., numeric value). Still adequate for a straightforward fetch.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description covers 100% of the api_key parameter with usage details. Tool description adds no further semantic information beyond stating it fetches balance for that key.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses specific verb 'Fetch' and resource 'USD credit balance for the caller API key', clearly distinguishing it from siblings like get_usage or get_pricing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. Only states 'Requires authentication', but does not specify prerequisites or context for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_pricingAInspect
Fetch current LMX Cloud per-call pricing catalog.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; the description merely says 'Fetch current ... pricing catalog', which indicates a read operation but doesn't cover authentication needs, caching, or other behavioral traits. It adds minimal context beyond the obvious.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that conveys the core action without any waste. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one optional parameter and no output schema, the description adequately conveys the purpose. However, it does not describe the return format, which could be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the description adds no meaning beyond what the schema provides for the api_key parameter. The description focuses on purpose, not parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Fetch', the resource 'pricing catalog', and specifies it's for 'LMX Cloud per-call', which distinguishes it from siblings like get_balance or get_usage.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when pricing information is needed, with no explicit exclusions or alternatives. The name itself clearly indicates its purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_statusBInspect
Fetch LMX Cloud provider health, fallback chain, and anchoring status.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden for behavioral disclosure. It mentions what is fetched (health, fallback chain, anchoring status) but omits details on authentication behavior (e.g., effect of missing api_key), rate limits, or side effects. This is a significant gap for a tool that may require authorization.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the core purpose. Every word is necessary and earns its place. There is no redundancy or superfluous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema is provided, and the description does not specify the response format or any details about the returned data. Given the complexity of 'fallback chain' and 'anchoring status', the description is inadequate for an agent to fully understand what to expect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for the single parameter (api_key), and the schema includes a detailed description. The tool description does not add extra meaning beyond the schema, so baseline score 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches 'LMX Cloud provider health, fallback chain, and anchoring status'. It uses a specific verb ('Fetch') and specifies multiple distinct aspects of status, distinguishing it from sibling tools like chat_completion or get_balance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking status but provides no explicit guidance on when to use vs. alternatives, nor any exclusions or when-not-to-use scenarios. It lacks context about prerequisites or prioritization among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_usageAInspect
Fetch request and token usage totals for the caller API key. Requires authentication.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It mentions 'Requires authentication' but does not disclose if it is read-only or any potential side effects. For a simple fetch, it is adequate but could be improved.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff, front-loaded with the core action. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple fetch tool with no output schema, the description is minimally sufficient. However, it could briefly mention what is returned (e.g., totals object) to improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'api_key' has a schema description already, but the tool description adds useful context on when to use it (override per call) and precedence over client headers/env. This adds value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Fetch') and resource ('request and token usage totals for the caller API key'), which is distinct from sibling tools like chat_completion or get_balance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. While authentication is noted, there is no mention of when to prefer this over get_pricing or get_balance for usage-related queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_modelsBInspect
List currently supported LMX model aliases and providers.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, and the description does not disclose any behavioral traits like read-only nature, rate limits, authentication requirements, or side effects. A simple list operation is implied but not explicitly guaranteed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence of 8 words with no redundant information. It is appropriately front-loaded and every word serves a purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple listing tool with no output schema, the description adequately conveys the scope. However, it could mention that the result is a list of objects with fields like alias and provider, and whether the list is exhaustive or paginated.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter (api_key) already documented in the schema. The description adds no additional semantic value beyond what the schema provides, meeting the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action ('list') and resource ('currently supported LMX model aliases and providers'), making the purpose immediately understandable and distinguishing it from sibling tools like chat_completion or get_usage.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as get_pricing or get_status. The description lacks context on prerequisites or typical usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
quote_priceAInspect
Estimate USDC cost for a single model call. Uses GET /v1/pricing with model and token params.
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model alias to quote (e.g. llama-3-70b). | |
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. | |
| max_tokens | No | Optional max completion tokens for the quote. | |
| prompt_tokens | No | Optional estimated prompt tokens (default: 1). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description mentions GET method (read-only) but lacks details on auth, rate limits, error behavior, or side effects. Adequate but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with purpose, no fluff. Efficiently communicates core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Lacks explanation of return value (estimated cost) and behavior in edge cases (e.g., rounding). No output schema. Adequate for a simple estimator but could be more complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all 4 parameters with descriptions (100% coverage). Description adds the context of 'Uses GET /v1/pricing' but no significant semantic enrichment beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Estimate', resource 'USDC cost for a single model call', and distinguishes from siblings like get_pricing (pricing info) and chat_completion (executes call).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implied usage (before model call) but no explicit when-to-use, when-not-to-use, or alternatives. Agent must infer context from sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_searchAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query string. | |
| api_key | No | Optional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call. | |
| max_results | No | Max results to return (1–20, default 5). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses real-time search, LMX passthrough, fixed per-call USDC pricing, and return format (title/url/snippet). However, it does not mention rate limits, error handling, or query modification. A 3 is appropriate as it covers key behaviors but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short, front-loaded sentences that convey purpose, cost, and output. No filler or redundant information. Every sentence adds value, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with no output schema, the description explains purpose, cost, and return fields. It lacks mention of pagination, result count behavior (though max_results param exists), and error handling. Still, it covers the essential context for an agent to use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The tool description adds no additional parameter meaning beyond what the schema already provides (e.g., query, api_key, max_results). Thus, it meets the minimum but does not enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Real-time web search' via LMX (Brave Search passthrough), which is distinct from sibling tools like chat_completion or get_balance. The verb 'search' and resource 'web' are specific, and the tool is unambiguously differentiated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies use for real-time web search queries. While no explicit alternatives or exclusions are given, the sibling tools are all unrelated (balance, pricing, models), so the context is clear. A brief 'when to use' would improve, but not necessary given differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceEnables AI-powered chat and DeFi operations (swap, transfer) via MCP-compliant tools, integrating with LLMs for onchain actions.Last updated13MIT
- AlicenseBqualityDmaintenanceDynamic MCP server — 30+ tools across fact verification, agent memory, Indian NLP, contract risk, security threat modelling, sales call intelligence and more. x402/USDC micropayments on Base.Last updated3316MIT
- Alicense-qualityBmaintenanceMCP server exposing 10 curated tools for AI agents, providing crypto trading signals, on-chain analysis, and web utilities via pay-per-call x402 endpoints on the Base network.Last updatedMIT
- Alicense-qualityCmaintenanceMCP server that provides AI agents with pay-per-call access to a suite of tools (honeypot check, token market, DeFi yields, etc.) via USDC on Base using the x402 protocol.Last updated134MIT