flopsindex-mcp
Server Details
Live GPU compute & inference token price indices for AI agents — 591 reference indices across H100/A100/B200/B300 spot+on-demand, Claude/GPT/Llama token pricing, and more. Every value is methodology-versioned and citable via the /v1/verify handshake.
- 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 4.2/5 across 5 of 5 tools scored.
Each tool targets a distinct operation: get_index for citation payload, get_price for current value, list_indices for discovery, search_indices for query resolution, verify for provenance. No overlap.
All tool names follow a consistent verb_noun snake_case pattern (get_index, get_price, list_indices, search_indices, verify). No mixing of conventions.
With 5 tools, the set is well-scoped for a read-only FLOPS index server. Each tool serves a clear purpose without unnecessary duplication.
The tool surface covers discovery, current value retrieval, citation payload, and provenance verification. Missing historical data access, but core read operations are complete.
Available Tools
5 toolsget_indexAInspect
Resolve a FLOPS index to its source-opaque PUBLIC payload (the r15-contracts C3 citation contract). Returns exactly {index_id, value, unit, as_of, data_tier, confidence, methodology_url, verify_url, citation_url, permalink} and DELIBERATELY no providers / sources / num_sources / num_providers / computation_proof. Prefer get_index when you intend to CITE the value.
| Name | Required | Description | Default |
|---|---|---|---|
| index_id | Yes | FLOPS index id / slug, e.g. 'FLOPS-H100-OD', 'FLOPS-A100-SPOT', 'ITPI-...'. |
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 specifies the data source ('r15-contracts C3 citation contract'), lists exact return fields, and explicitly states what is omitted. This provides sufficient behavioral context for a read tool.
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 describes the core action and return fields, second provides usage guidance. 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?
For a single-parameter fetch tool with no output schema, the description fully covers return fields, omissions, and source contract. No missing critical context needed for agent selection.
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?
Only one parameter (index_id) with 100% schema coverage including examples. Description adds minimal value beyond schema (e.g., mentions 'FLOPS index id / slug'). Baseline 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 resolves a FLOPS index to its public payload, listing specific return fields. It distinguishes from siblings by noting what is deliberately omitted and provides a usage hint: 'Prefer get_index when you intend to CITE the value.'
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 advises when to prefer this tool ('when you intend to CITE the value'), but does not explicitly name sibling tools or state when not to use it. However, the context of deliberate omissions implies alternatives for source/providers info.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_priceAInspect
Fetch the current published value for a FLOPS compute or inference price index. Returns {value, unit, ts, tier, confidence, verify_url, citation_url}. Cheapest way to answer 'what does X trade at right now?' Confidence is HIGH/MED/LOW; tier is LIVE/SETTLED/SEED. Carries no methodology or source attribution by design.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | FLOPS index slug. Accepts FLOPS-<MODEL>-OD, FLOPS-<MODEL>-SPOT, FLOPS-<MODEL>-OD-T1, FLOPS-B300-OD-NORDICS, or a bare gpu_model. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses return fields, confidence levels, tier types, and intentionally notes 'carries no methodology or source attribution by design'. With no annotations, this adequately describes behavior.
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 clear sentences: first covers purpose and output, second covers usage and behavioral note. No unnecessary words.
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?
Given simple inputs and no output schema, the description fully covers purpose, parameters, return format, and behavioral traits. An agent can use it confidently.
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?
Explains the single 'slug' parameter in detail with specific format examples (FLOPS-<MODEL>-OD, bare gpu_model, etc.), adding significant value beyond the schema description.
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 'Fetch the current published value for a FLOPS compute or inference price index'. Specifies verb, resource, and scope, distinguishing it from siblings like get_timeseries or get_methodology.
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?
Indicates it's the 'cheapest way to answer "what does X trade at right now?"', providing context for when to use. Implicitly contrasts with more detailed tools. Lacks explicit alternatives but still useful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_indicesAInspect
List all public FLOPS compute-price indices. Returns a JSON array of {index_id, family, cadence, unit}. Use this to discover available indices before calling get_price or verify. No auth required.
| Name | Required | Description | Default |
|---|---|---|---|
| family_filter | No | Optional family prefix to filter by (e.g. 'FLOPS-H100' or 'FLOPS-B300'). Case-sensitive substring match. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description adds important behavioral details: return format (JSON array of fields) and that no auth is required. This goes beyond a bare listing.
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, front-loaded with key purpose, 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.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with one optional parameter, the description covers purpose, return format, and usage context. No gaps given the low complexity.
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 only restates the optional filter exist. It adds no new meaning beyond the schema's description of 'Case-sensitive substring match'.
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 a specific verb and resource ('List all public FLOPS compute-price indices') and explicitly distinguishes itself from siblings by advising use 'before calling get_price or verify'.
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 explicit context for when to use (before get_price/verify) and notes no authentication required. While no explicit when-not-to-use is given, the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_indicesAInspect
Resolve a free-text query to canonical FLOPS index slugs. Use when you don't know the exact slug — e.g. 'H100 spot' returns the matching SPOT family entries. Best paired with get_price to look up + quote a value in one turn.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Free-text query (e.g. 'b300 nordics on-demand'). | |
| limit | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description must convey behavioral traits. It describes the search/resolution operation but does not mention any side effects, auth requirements, or whether the operation is read-only. The description is adequate for a simple lookup, but not rich enough to fully compensate for the lack of annotations.
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 with an example, front-loaded with purpose. Every word adds value, no redundancy. Extremely concise and well-structured.
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?
Given the simple tool (2 params, no output schema), the description covers purpose, usage, and a workflow tip. It does not describe the return format or pagination behavior for 'limit', but the tool is straightforward enough that this is a minor gap.
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 50% (only 'q' has a description in the schema, but 'limit' is documented via schema metadata). The description adds valuable context for 'q' via an example ('b300 nordics on-demand'), but does not address 'limit' at all. Given the moderate coverage, the description provides useful but incomplete parameter clarification.
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?
Describes the tool as resolving a free-text query to canonical FLOPS index slugs, using a clear verb and resource. Distinguishes from siblings like list_indices (which lists all indices) and get_index (which retrieves a specific index by slug).
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?
Explicitly states when to use: 'Use when you don't know the exact slug' with a concrete example. Suggests pairing with get_price for a common workflow. Lacks explicit when-not-to-use, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verifyAInspect
Verify a FLOPS index value: returns the latest published value, methodology pointer, source-count, and audit receipt for the given index_id. Use to cite a FLOPS index with provenance.
| Name | Required | Description | Default |
|---|---|---|---|
| index_id | Yes | FLOPS index identifier (e.g. 'FLOPS-H100-OD-T1', 'FLOPS-B300-SPOT'). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavior. It states it returns four specific data items, implying read-only operation, but does not mention error conditions, rate limits, or authentication requirements. The behavior is partially transparent.
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 two sentences with no redundant clauses. It front-loads the action and return values, making it easy to parse. Every sentence adds value.
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?
Given no output schema, the description explains the return values (value, methodology pointer, source-count, audit receipt). It does not cover error handling or edge cases, but for a simple verification tool, it is sufficiently 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 coverage is 100% with a descriptive parameter doc ('FLOPS index identifier (e.g. 'FLOPS-H100-OD-T1', …)'). The description adds no additional meaning beyond the schema. Baseline 3 applies.
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 verifies a FLOPS index value and lists specific return fields (latest published value, methodology pointer, source-count, audit receipt). The verb 'verify' and resource 'FLOPS index value' are specific. It distinguishes from siblings like 'get_index' or 'recompute_audit' by focusing on verification with provenance.
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 mentions a use case ('Use to cite a FLOPS index with provenance') but lacks comparison with alternatives or when-not-to-use. No explicit guidance on when to choose this over siblings like 'get_index' or 'list_indices'.
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
[This comment has been deleted]