studio
Server Details
Turn analyzed data into an Excel-like spreadsheet at a shareable URL: formulas, styles, filters.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolsget_feature_specAInspect
Returns the full schema fragment for one advanced feature. The argument must be an exact name from get_schema().featureNames — it is a fixed enumeration, not a free-text description of what you want to build.
| Name | Required | Description | Default |
|---|---|---|---|
| feature | Yes | Feature name from get_schema().featureNames |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the behavioral disclosure burden. It clearly indicates a read-only retrieval ('Returns') and emphasizes the critical constraint of using exact enumeration values, but does not discuss error behavior or response format. Adequate for a simple lookup 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 deliver the essential information with zero fluff: what is returned and how to determine a valid argument. Front-loaded action and resource make it easy to scan.
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 one-parameter read-only tool with a constrained enum, the description plus schema is fully sufficient. It references the upstream get_schema tool for obtaining valid names, making invocation unambiguous. No output schema is needed for a schema-fragment lookup.
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 sole parameter has full schema coverage with an enum and description. The description adds valuable semantic layer—'must be an exact name from get_schema().featureNames' and 'fixed enumeration, not free-text'—which goes beyond the schema description and prevents misuse.
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 starts with specific verb 'Returns' and object 'the full schema fragment for one advanced feature', clearly distinguishing from siblings like get_schema (which lists feature names) and get_sheet/publish_sheet. Purpose is unambiguous and well-scoped.
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?
Description explicitly instructs that the argument must be an exact name from get_schema().featureNames and is a fixed enumeration, not a free-text description. This gives clear context for when to use the tool, though it does not explicitly name alternatives or state 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.
get_schemaAInspect
Returns the base ReoGridJsonDocument schema and an index of advanced features. The base schema already covers cell values, formulas, styling, borders and merges — those need no follow-up call. Call get_feature_spec(feature) only for a name listed in the returned features[] array, passing features[].name verbatim.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It explains the return structure (base schema plus features[] array) and notes that the base schema already covers certain aspects. It implies a read-only operation, and while it doesn't discuss errors or side effects, the tool's simplicity (no parameters) makes the behavior sufficiently 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?
Two sentences with no redundancy. The first sentence states the primary purpose; the second adds usage guidance. All information is essential and front-loaded.
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 tool has no parameters and no output schema, the description adequately explains what is returned and how to proceed with the returned data. It mentions the features[] array and instructs on calling get_feature_spec. This is complete for the agent's needs.
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 tool has zero parameters, so the schema trivially covers 100%. The description adds no parameter info because none exist, but it does clarify the structure of the returned features array, which is relevant to how the tool is used.
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 what the tool does: 'Returns the base ReoGridJsonDocument schema and an index of advanced features.' It specifies the resource (schema and feature index) and differentiates from the sibling tool get_feature_spec by explicitly limiting that tool's 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?
It provides explicit when-to-use guidance: the base schema covers cells, formulas, styling, borders, merges, so no follow-up needed. It also directs calling get_feature_spec only for names in the features[] array, passing the name verbatim, which effectively states when not to use that alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_sheetAInspect
Fetches a previously published sheet by its short ID.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Short ID returned by publish_sheet |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. 'Fetches' clearly indicates a read operation, and 'previously published' sets a precondition, but it does not describe error behavior, idempotency, or what happens if the ID is invalid. Minimal but not misleading.
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, well-structured sentence that starts with the main verb and includes all essential information without any redundant words. It is appropriately sized for a simple tool.
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?
The tool is simple (one parameter, no output schema), and the description gives the core purpose and precondition. However, since there is no output schema, it would benefit from stating what the return value contains. The sibling context (publish_sheet) helps, but the description alone is somewhat sparse.
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 schema description ('Short ID returned by publish_sheet') fully defines the parameter. The tool description adds no new semantic information beyond what the schema already provides, matching the baseline for high coverage.
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 a specific verb ('Fetches') and resource ('previously published sheet'), clearly distinguishing it from siblings like get_schema and get_feature_spec. The phrase 'by its short ID' also identifies the key input, making the purpose unmistakable.
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 (must be a previously published sheet, so presumably publish_sheet should be called first) but does not explicitly state when to use this tool vs alternatives or provide exclusions. It leaves the timing and prerequisites to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
publish_sheetAInspect
Publishes a ReoGridJsonDocument and returns a public URL. Anonymous; rate-limited per IP. No expiry in Phase 1. The doc must conform to the schema returned by get_schema().
| Name | Required | Description | Default |
|---|---|---|---|
| doc | Yes | A ReoGridJsonDocument (format=reogrid-json, version=1) | |
| title | No | Optional human-readable title |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively covers key behavioral traits: authentication (anonymous), rate limiting (per IP), expiration (no expiry in Phase 1), and validation constraint (must conform to get_schema). This is substantial transparency beyond the bare action.
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 three concise sentences. The first sentence states the core purpose, the second adds key behavioral constraints, and the third adds a validation prerequisite. No wasted words; every sentence contributes necessary 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?
Given that there is no output schema and no annotations, the description covers the main aspects: what the tool does, the validation requirement, and important behavioral constraints (rate limit, no expiry). It could mention error handling or the exact structure of the returned URL, but the essentials are present. For a simple publish operation, this is adequately 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 description coverage is 100%, so the baseline is 3. The description adds meaning by specifying that the 'doc' parameter must conform to the schema returned by get_schema(), which gives validation context not present in the schema property description. The 'title' parameter is already well-described in 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?
Clearly states the action ('Publishes a ReoGridJsonDocument') and the result ('returns a public URL'). This is a specific verb+resource description that distinguishes the tool from its sibling getters (get_feature_spec, get_schema, get_sheet).
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 contextual usage guidance: anonymous access, rate-limiting per IP, and no expiry in Phase 1. It also implies a prerequisite by stating the document must conform to get_schema(), which directs the agent to call a sibling first. No explicit alternatives or exclusions are given, but the context is sufficient for basic use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Changed
get_feature_spec2 fields changed- changed
Input schema / properties / feature / descriptionPrevious value: -"Feature name from get_schema().features[].name"New value: +"Feature name from get_schema().featureNames" - added
Input schema / properties / feature / enumAdded value: +[ + "conditionalFormats", + "cellTypes", + "filter", + "outlines", + "protection", + "alternateRows", + "view", + "frozen", + "numberFormats", + "richText" +]
4 tool updates
- First observed
get_feature_spec - First observed
get_schema - First observed
get_sheet - First observed
publish_sheet
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Excel analytics: inspect, query (JSON rows), charts, and JSON-to-xlsx workbook writing.
Turn HTML or a live URL into polished PDF and Excel files — hosted downloads, async jobs, history.
Paste-your-data analytics: CSV profiling, A/B tests, correlation, growth. 4 of 7 free.
Open, inspect, filter, edit and convert xlsx and csv files from your AI chat. Processing is local.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables AI agents to work with a real Excel-compatible spreadsheet engine, allowing them to create and manipulate structured data blocks, write and evaluate formulas, and save genuine .xlsx files with live formulas for human verification and reuse.2620440MIT
- AlicenseCqualityBmaintenanceEnables conversational data analysis of Excel/CSV files through natural language queries, powered by 395 Excel functions via HyperFormula and multi-provider AI. Supports advanced analytics, bulk operations, financial modeling, and large file processing with intelligent chunking.353736MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI assistants to present interactive spreadsheets within conversations, allowing users to view, edit, import, and export Excel/CSV data directly through the chat interface.-
- FlicenseNot gradedqualityDmaintenanceEnables analysis of datasets from CSV/Excel files, Google Sheets, and Google Drive with comprehensive data profiling tools including schema inference, missing value reports, correlation analysis, and outlier detection. Supports exporting analytical reports in multiple formats to local storage or Google Drive.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct role: get_schema and get_feature_spec are layered (overview vs detail), while get_sheet and publish_sheet are inverse operations. No two tools overlap in purpose or could be confused.
All tool names follow a consistent verb_noun pattern (get_schema, get_feature_spec, get_sheet, publish_sheet) using snake_case, making the action and resource obvious.
Four tools is well-scoped for a service that handles schema discovery, publishing, and retrieval. Each tool serves a necessary function without redundancy.
The tool set covers the core lifecycle of publishing (publish_sheet) and fetching (get_sheet), plus schema discovery (get_schema) and advanced feature details (get_feature_spec). No critical gaps are apparent for the stated Phase 1 scope.