Skip to main content
Glama

Server Details

Hubris is an OpenAI-compatible LLM gateway for the Russian market, billed in rubles. This MCP server gives agents access to the model catalog (400+ models with ruble pricing), account balance, and chat completions with full parity to POST /v1/chat/completions.

Tools: models_list, models_search (filter by capability/price/context length), models_get_pricing, balance_get, chat_complete. Resources: hubris://catalog/models, hubris://docs/quickstart. Prompt: compare-models.

Docs: https://hubris.pw/

Ownership verified
Status
Healthy
OAuth
Not checked
Last Tested
Transport
Streamable HTTP
URL

Available Tools

5 tools
balance_getAInspect

Баланс аккаунта в рублях (и копейках строкой для точности).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It usefully reveals that the balance includes kopecks as a string for precision, which is a meaningful output nuance. However, it does not explicitly state that the operation is read-only, has no side effects, or what happens on errors.

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 concise sentence that immediately states what the tool returns and the key formatting nuance. Every word earns its place, with no fluff or repetition.

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 zero-parameter read-only balance getter with no output schema, the description gives the essential return information: account balance in rubles with kopecks as a string. It is slightly light on explicit output structure or error/authentication behavior, but the tool's simplicity makes the description largely sufficient.

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 tool has zero parameters, so the schema covers all parameter semantics vacuously. The description does not need to explain parameters, and the baseline of 4 for zero-parameter tools is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource (account balance) and the currency/format (rubles and kopecks as a string). However, it is a noun phrase rather than an explicit action statement like 'Returns...', so it does not fully meet the 5-level bar for a specific verb.

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?

The description gives no guidance on when to use this tool versus alternatives, and no exclusions or prerequisites. While one can infer it is for checking account balance, the text itself does not say this or mention any sibling tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

chat_completeAInspect

Полный паритет с /v1/chat/completions (без streaming).

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNo
stopNo
modelYes
toolsNo
messagesYes
reasoningNo
max_tokensNo
web_searchNo
temperatureNo
tool_choiceNo
response_formatNo

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the disclosure burden but provides only one concrete behavioral trait: no streaming. 'Full parity' implies standard OpenAI-compatible request/response behavior, yet auth, rate-limit, error, and side-effect characteristics are not spelled out.

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 dense sentence with the key caveat (no streaming) included. Every word earns its place and no redundant schema content is repeated.

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?

The description is adequate for an API-savvy agent because the parity statement encodes request/response semantics, but for an 11-parameter tool with no output schema and no annotations it leaves non-API-specific context (return format, error behavior, auth) implicit. It relies heavily on the agent already knowing /v1/chat/completions.

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 description coverage is 0%, but the parity statement gives the parameter names the semantics of OpenAI's chat completions API, which is substantial shared meaning. This compensates for the undocumented schema better than a generic summary would, though it still delegates detailed parameter explanations to external knowledge.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states that the tool has full parity with the well-known /v1/chat/completions endpoint and explicitly excludes streaming, which makes its function clear. It lacks an explicit verb like 'generate', but the endpoint reference is specific enough to distinguish it from the unrelated model/balance sibling tools.

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?

Usage context is only implied: an agent can infer this is the tool for standard chat completions since no other chat-oriented sibling exists. The only explicit guidance is the exclusion of streaming ('без streaming'); there is no stated when-to-use or when-not-to-use discussion beyond that.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

models_get_pricingBInspect

Тарификация модели в рублях. Внутренняя экономика (markup/курс ЦБ) не раскрывается.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelIdYes

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the behavioral burden. It usefully discloses that internal markup and Central Bank exchange rate are not exposed, and that pricing is in rubles. However, it does not describe side effects, authentication needs, or the exact scope of what the returned price covers.

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 two short sentences with no filler. The first sentence states the core purpose, and the second adds a relevant limitation. It is appropriately sized and front-loaded.

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?

For a one-parameter read-only lookup, the schema covers invocation and 'modelId' is reasonably self-explanatory. Still, there is no output schema and the description does not explain the return shape or how to discover valid model IDs. It is mostly adequate for a minimal tool but leaves some gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain modelId beyond what the property name implies. There is no mention of where to find valid model IDs, any format requirements, or how the ID maps to a model. The tool name and schema make it inferable, but the description adds no parameter-level value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as providing model pricing in rubles, which is a specific resource and currency. It does not explicitly contrast with sibling tools, but 'pricing' is distinct from balance, chat, listing, and search functions.

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?

There is no guidance about when to use this tool versus models_list, models_search, or chat_complete. The description does not mention that modelId can be obtained from models_list or any prerequisites, leaving selection to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

models_listCInspect

Каталог активных моделей. Поддерживает курсорную пагинацию.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
cursorNoКурсор из предыдущего ответа (model id).

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It does mention cursor pagination, which is useful, but it does not state whether the operation is read-only, what the response shape is, or whether there are any side effects. The word 'catalog' implies read-only but is not explicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and to the point, with the core purpose front-loaded and the pagination behavior stated right after. Every word earns its place, though the brevity leaves gaps in other dimensions.

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?

For a simple listing tool with two optional parameters and no output schema, the description provides only the core concept and a pagination hint. It lacks information about return format, ordering, authentication, or how this tool relates to its siblings, which is insufficient for reliable selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50%: only the cursor parameter has a description. The description itself adds no parameter-specific meaning, and it does not explain how limit interacts with pagination or what values are appropriate. Since schema coverage is not high, the description should have compensated but did not.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as a catalog of active models, which conveys a listing operation on a specific resource. It also mentions cursor pagination, adding precision. However, it does not explicitly differentiate this from sibling tools like models_search or models_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 is given about when to use models_list versus alternatives such as models_search or models_get_pricing. The description lacks exclusions, prerequisites, or contextual scenarios, leaving the agent to infer usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Frequently Asked Questions

Discussions

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation4/5

balance_get, chat_complete, and models_get_pricing have clearly distinct purposes. models_list and models_search overlap somewhat, but the descriptions differentiate a paginated catalog from a filtered search.

Naming Consistency4/5

Most tools follow a resource-first, action-last pattern like balance_get and models_list. models_get_pricing breaks the pattern slightly by embedding a second object in the action, and chat_complete is a little ambiguous, but overall the naming remains readable and predictable.

Tool Count5/5

Five tools is well-scoped for a chat/API gateway server. Each tool serves a distinct core need: balance, completion, pricing, model listing, and model search.

Completeness4/5

The set covers the main workflows: checking balance, calling chat completions, browsing/searching models, and fetching pricing. The explicit lack of streaming is a notable gap, but non-streaming parity is still provided and there are no dead ends.

Resources