Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.8/5 across 8 of 8 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern (e.g., chat_completion, get_balance, list_models). No mixing of conventions.

Tool Count5/5

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.

Completeness4/5

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 tools
chat_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelNoOptional model name or alias. Uses default if omitted.
imagesNoOptional additional images (https URLs or data:image/...;base64,... URIs). Requires a vision-capable model.
promptYesUser prompt to send to the selected model.
api_keyNoOptional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call.
image_urlNoOptional image as an https URL or data:image/...;base64,... URI. Requires a vision-capable model.
max_tokensNoOptional max completion tokens.
temperatureNoOptional sampling temperature.
Behavior4/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call.
Behavior2/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call.
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call.
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call.
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call.
Behavior2/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYesModel alias to quote (e.g. llama-3-70b).
api_keyNoOptional LMX API key (lmx_...). Prefer MCP client Authorization header or env; use this to override per call.
max_tokensNoOptional max completion tokens for the quote.
prompt_tokensNoOptional estimated prompt tokens (default: 1).
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources