Skip to main content
Glama

Server Details

Get dollar quotes from 200+ LLMs before any work runs; accept, execute, and verify quality.

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 4.1/5 across 5 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: submitting tasks for quotes, estimating costs, accepting quotes, retrieving deliverables, re-running for quality, and checking spending. No ambiguity between tools.

Naming Consistency4/5

Tool names are mostly verb or verb_noun in snake_case, with 'quote' being a noun (could be 'create_quote') and 'accept' a bare verb. Consistent style but minor inconsistency in verb usage.

Tool Count5/5

Six tools cover the core workflow of requesting, estimating, accepting, monitoring, rerunning, and tracking spending—neither too few nor too many for the domain.

Completeness4/5

Covers essential operations (quote, estimate, accept, check, rerun, spend). Missing a cancel/delete function, but the core lifecycle is complete without dead ends.

Available Tools

6 tools
acceptAInspect

Accept one quote on a request. The chosen model executes the task. Poll get_deliverable for the result.

ParametersJSON Schema
NameRequiredDescriptionDefault
quote_idYes
request_idYes
Behavior4/5

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

Adds context beyond annotations: indicates execution and result retrieval via polling. Annotations already show non-read-only and non-destructive.

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, front-loaded sentences with no extra words.

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?

Covers basic flow (accept, execute, polling) but omits error handling or precondition details. Adequate for a simple tool.

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?

With 0% schema coverage, description does not explain parameters; only implies their role through context. Minimal added meaning.

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 'Accept one quote on a request' with specific verb and resource, and distinguishes from siblings (e.g., quote, estimate_cost).

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?

Implies usage after obtaining a quote and suggests polling get_deliverable, but lacks explicit when-not-to-use or alternatives.

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

estimate_costA
Read-only
Inspect

Deterministic cost estimate across all models for a task, without using a quote from your allowance. Optionally pass expected_output_words.

ParametersJSON Schema
NameRequiredDescriptionDefault
descriptionYes
expected_output_wordsNo
Behavior4/5

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

Annotations already provide readOnlyHint=true and destructiveHint=false. The description adds value by specifying the estimate is deterministic and that no quota is consumed, which are behaviors not fully captured by annotations.

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 sentences long, front-loads the core purpose, and contains no redundant information. Every word earns its place.

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 simple tool with two parameters and no output schema, the description is adequate but incomplete: it does not explain the required `description` parameter or the format of the return value (presumably a cost estimate number).

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?

With 0% schema description coverage, the burden on the description is high. It only mentions the optional `expected_output_words` parameter, leaving the required `description` parameter completely unexplained, failing to add meaning 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 tool provides a deterministic cost estimate for a task without using quota, distinguishing it from sibling tools like 'quote' which may use allowance.

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 when to use this tool (cost estimation without quota) and hints at parameter usage, but does not explicitly exclude alternatives or mention prerequisites.

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

get_deliverableA
Read-only
Inspect

Get the status and deliverable of a request. Status: quoting, quoted, executing, completed, failed.

ParametersJSON Schema
NameRequiredDescriptionDefault
request_idYes
Behavior4/5

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

Annotations indicate read-only and non-destructive. Description adds value by enumerating statuses and mentioning 'deliverable', which is not in annotations. No contradictions.

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 with no redundancy. Front-loaded with purpose and immediate enumeration of statuses. Every sentence adds value.

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?

Given the simple tool (one param, no output schema, clear annotations), the description adequately covers purpose and behavior. However, it could mention the return format or what 'deliverable' means.

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?

Single parameter 'request_id' has no schema description (0% coverage), and the tool description does not explain it. While the name is self-explanatory, the description provides no additional semantics.

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?

Clearly states the tool gets the status and deliverable of a request, listing all possible statuses. Distinguishes from siblings like 'accept' and 'quote' which are actions, not status retrieval.

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?

Implicit context suggests use when needing request status, but no explicit guidance on when to use alternatives. The sibling tools are clearly different actions, making it easy to infer.

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

quoteAInspect

Submit a task description and receive dollar quotes from multiple frontier AI models before any work is done. Returns the request id, quotes with prices in cents, and a recommendation.

ParametersJSON Schema
NameRequiredDescriptionDefault
descriptionYesThe task to be quoted
Behavior3/5

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

The description indicates that a 'request id' is returned, implying that a request is created. However, it does not explicitly state whether this creates a persistent record or has side effects. Annotations show readOnlyHint false, suggesting mutation, but the description could clarify the exact behavioral impact.

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, well-structured sentence that is concise and front-loaded with the purpose. Every word adds value, and it efficiently conveys the tool's function.

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?

Given the simple input schema and no output schema, the description adequately covers the tool's functionality and return values. It mentions the workflow timing ('before any work is done'), but could briefly note that this is a precursor to 'accept' for complete context.

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?

There is only one parameter with 100% schema description coverage. The description restates that the parameter is a 'task description', adding no additional semantic detail beyond the schema. Baseline score of 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 verb ('Submit'), the resource ('task description'), and the output ('dollar quotes from multiple frontier AI models'). It also mentions the return values, distinguishing it from siblings like 'accept' and 'estimate_cost'.

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 this tool should be used 'before any work is done', providing context for the workflow. However, it does not explicitly state when not to use it or name alternatives, but the sibling list and purpose make the usage clear.

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

rerunAInspect

Quality guarantee: re-run a completed request once for free if its deliverable scored below 70/100 on the automated quality check. Produces a fresh deliverable with the same accepted quote.

ParametersJSON Schema
NameRequiredDescriptionDefault
request_idYes
Behavior4/5

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

The description adds value beyond annotations by explaining the quality threshold, free nature, and that it produces a fresh deliverable with the same quote. It does not contradict annotations (destructiveHint=false, readOnlyHint=false). However, it doesn't mention any side effects or limits beyond 'once'.

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 sentences, extremely concise and front-loaded with the key purpose. Every word adds value with no fluff.

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 parameter and no output schema, the description covers the core purpose and condition. It could mention what happens if the condition is not met or how to check the quality score, but overall it is adequately complete.

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 coverage is 0%, and the description does not explain the request_id parameter or how to obtain it. While the single parameter's purpose is somewhat obvious from context, the description should explicitly clarify it to fully assist the agent.

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 function: re-run a completed request once for free if its deliverable scored below 70/100. It uses specific verbs and resource (re-run completed request) and differentiates it from siblings like accept or quote by specifying the quality guarantee condition.

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 provides a clear condition for when to use the tool (below 70/100 quality score). It implies alternatives (like normal re-run) but doesn't explicitly list them or state when not to use it. This is good context but lacks explicit exclusions.

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

spendA
Read-only
Inspect

Get your QuoteFirst spend this month in cents, total and broken down by model.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds context that the spend is for QuoteFirst this month, broken down by model, and in cents, which goes beyond the annotations and provides useful behavioral detail.

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 is clear and concise, with no unnecessary words. Every part adds value.

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 read-only tool with no parameters and no output schema, the description covers the key aspects: source (QuoteFirst), time frame (this month), unit (cents), and data breakdown (total and by model). It is fairly complete, though it might be enhanced by clarifying if the data is only for the current month.

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 and schema coverage is 100% trivially. The description does not need to add parameter details, and it adds no extra meaning beyond the schema, but the baseline for 0 params is 4.

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 gets QuoteFirst spend in cents, total and broken down by model. This is a specific verb+resource+scope, distinguishing it from siblings like 'estimate_cost' and 'quote'.

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 retrieving monthly spend but does not provide explicit guidance on when to use this tool versus alternatives, nor does it mention when not to use it.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources