StructForge
Server Details
Turn messy text into strict JSON schemas agents can trust (invoice, receipt, contact, resume).
- 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 3.4/5 across 6 of 6 tools scored.
Most tools have clear distinct purposes, but parse_invoice and structure_text both handle invoice text, causing minor overlap. However, parse_invoice is more detailed with line_items and math_check, while structure_text is generic.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., extract_table, get_schema). The naming is clear and predictable.
With 6 tools covering extraction, schema discovery, normalization, parsing, and validation, the count is well-scoped for a data transformation server. No unnecessary bloat.
The tool set covers key operations: extraction, schema discovery, normalization, parsing, and validation. Minor gaps exist (e.g., no tool for creating or updating schemas), but the curated schema approach mitigates this.
Available Tools
6 toolsextract_tableAInspect
Extract HTML or markdown tables into JSON rows.
| Name | Required | Description | Default |
|---|---|---|---|
| html | Yes | HTML or table content |
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 discloses the basic operation but lacks details on error handling, behavior with malformed input, or limitations (e.g., only extracts first table?).
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?
One sentence, front-loaded with the core purpose. No wasted words, efficient and clear.
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 is fairly complete for the simplicity of the tool. It covers input and output format. Could mention output structure or edge cases.
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% as the single parameter 'html' has a description. The tool description adds minimal extra meaning beyond the parameter description, repeating that input can be HTML or markdown.
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 action (extract), the input types (HTML or markdown tables), and the output format (JSON rows). It is specific and distinguishes from sibling tools like structure_text or normalize_data.
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?
Usage is implied (when you have HTML or markdown tables to extract), but no explicit guidance on when not to use or alternatives. Lacks explicit context to differentiate from siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_schemaBInspect
Discover schema shapes. Pass name for one schema, or omit to list all curated schemas.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Schema name; omit to list all |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose behavioral traits such as read-only nature, idempotency, or output structure. The agent lacks information about side effects or expected 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?
The description is extremely concise (two sentences) and front-loaded, with 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?
The tool is simple with one optional parameter, but the description does not explain what 'curated schemas' are or what the output contains (e.g., field names, types). This leaves some ambiguity.
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 adds value by explaining the parameter's effect ('one schema' vs 'all curated schemas') beyond the schema's 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?
The description clearly states the tool discovers schema shapes and explains the two usage modes (with or without a name). However, it does not explicitly differentiate from sibling tools, though these focus on data manipulation rather than metadata.
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 tells when to include the name (to get one schema) vs omit (to list all), but provides no guidance on when to use this tool over siblings or in what workflow context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
normalize_dataCInspect
Normalize data object to a named schema (invoice, receipt, contact, resume).
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Input data object | |
| target_schema | Yes | Target schema name |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries full burden. It does not disclose any behavioral traits: no mention of whether normalization is destructive, whether it validates input, or what happens on failure (e.g., partial success, errors). The description is too brief for a transformation 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?
Single sentence that effectively front-loads the core purpose. It is concise with no wasted words, but could benefit from a second sentence giving usage hints or a note about return format.
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?
No output schema or return value description. The tool has a nested object parameter and no annotation support. The description fails to explain what the normalized output looks like, error behavior, or transformation logic. Incomplete given the 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% with basic descriptions for both parameters. The description adds 'named schema' and examples, providing context beyond the schema. However, it does not specify valid values for target_schema (e.g., exact strings or enum) beyond the examples, leaving ambiguity.
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 clearly states the action ('normalize'), resource ('data object'), and target ('named schema') with examples (invoice, receipt, contact, resume). It distinguishes the tool from siblings like parse_invoice, which is more specific. However, it does not explicitly differentiate from extract_table or structure_text, so not a perfect 5.
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?
No guidance on when to use this tool versus alternatives like parse_invoice or extract_table. The description implies a general normalization use case but lacks context on prerequisites, fail conditions, or when another tool would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
parse_invoiceAInspect
Parse invoice text into vendor, amount, due_date, line_items (with math_check).
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Invoice text or PDF extract |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions a 'math_check' on line_items, adding some behavioral context, but does not disclose error handling, idempotency, or required permissions. The brief description offers moderate transparency.
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, front-loaded sentence that conveys the tool's purpose and key outputs without any redundant or extraneous 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 simple tool with one parameter and no output schema, the description adequately lists the extracted fields. It does not cover error cases or edge conditions, but given the low complexity, it provides sufficient context.
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% for the single parameter 'text', which is already described as 'Invoice text or PDF extract'. The tool description does not add further meaning beyond that, so the baseline of 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 specifies the verb 'parse', the resource 'invoice text', and the expected output fields (vendor, amount, due_date, line_items with math_check). This clearly differentiates from sibling tools like extract_table or get_schema, which serve different purposes.
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 the tool is for parsing invoices but provides no explicit guidance on when to use it versus alternatives such as extract_table or structure_text. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
structure_textAInspect
Convert messy text to strict JSON schema. Use for emails, chat logs, unstructured input. Schemas: invoice, receipt, contact, resume.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Raw text to structure | |
| schema_name | No | Target schema: invoice, receipt, contact, resume | generic |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It describes the transformation but does not disclose side effects, error behavior, or statefulness. It is minimally 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences, front-loaded with the main action and use cases. No redundant or irrelevant 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 no output schema, the description does not specify the output format (e.g., a structured JSON object). Input parameters are covered, but the overall completeness is moderate. It could describe what the output looks like.
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%, so the description adds marginal value beyond the schema. It mentions the schemas, which the schema_name parameter already describes. The description does not enhance parameter meaning significantly.
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 action ('convert messy text') and the output ('strict JSON schema'), and lists specific schemas (invoice, receipt, contact, resume). This distinguishes it from sibling tools like parse_invoice, which targets only invoices, and extract_table, which extracts tables.
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 provides use cases ('emails, chat logs, unstructured input') and lists available schemas, offering guidance on when to use. However, it does not explicitly state when not to use or contrast with siblings like normalize_data or validate_structure.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_structureCInspect
Validate JSON against a schema. Enforces field presence and types (string/number/date/array).
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| schema_name | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It confirms the tool is a read-only validation but omits critical behavioral details such as error handling (e.g., exception vs. error result), output format, and whether it modifies state.
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?
Single sentence, no wasted words. However, it sacrifices necessary detail for brevity.
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 two parameters (one complex object) and no output schema, the description is incomplete. It fails to state return value (e.g., boolean, error list) or behavior on invalid data, limiting the agent's ability to use the tool effectively.
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 0%, so the description should compensate. It mentions 'enforces field presence and types' but does not explicitly link to parameters (data, schema_name) or clarify what schema_name refers to (e.g., a predefined schema name).
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 verb 'validate' and the resource 'JSON against a schema'. It also specifies the enforcement of field presence and types (string/number/date/array), distinguishing it from sibling tools that deal with extraction, normalization, or parsing.
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?
No guidance is provided on when to use this tool versus alternatives like 'get_schema' or 'normalize_data'. The description does not mention prerequisites, context, or exclusions.
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
No comments yet. Be the first to start the discussion!