Skip to main content
Glama

Server Details

Turn messy text into strict JSON schemas agents can trust (invoice, receipt, contact, resume).

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

6 tools
extract_tableAInspect

Extract HTML or markdown tables into JSON rows.

ParametersJSON Schema
NameRequiredDescriptionDefault
htmlYesHTML or table content

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It states the core transformation but does not disclose how malformed or partial HTML/markdown is handled, whether multiple tables are supported, how rows are structured, or whether the operation is purely 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?

One concise, front-loaded sentence communicates the essential operation and output. There is no filler or redundancy.

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 tool with no output schema, the description gives a minimally viable contract: input format and output concept. However, it lacks detail on result shape (e.g., array of row objects), error behavior, and handling of edge cases, so it is adequate but not complete.

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?

Schema description coverage is 100%: the single 'html' parameter is described as 'HTML or table content'. The description adds 'markdown tables' which is a useful clarification, but it does not meaningfully extend the schema's parameter semantics. Baseline 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 uses a specific verb ('extract'), identifies the resource ('HTML or markdown tables'), and states the output ('JSON rows'). This clearly distinguishes it from sibling tools like parse_invoice or normalize_data without requiring schema inspection.

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 intended use is implied: call this when you have HTML or markdown tables to convert to JSON rows. However, there is no explicit guidance about when not to use it, no alternative sibling routing, and no mention of prerequisites or limitations.

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoSchema name; omit to list all

TDQS

B3.3/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. It discloses that omitting the name returns all curated schemas and passing a name returns one, which is useful behavioral context. However, it doesn't describe the return format, whether the operation is read-only, error behavior, or what 'curated' means, leaving some gaps for a full understanding.

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 sentences with no filler. The primary purpose is front-loaded, and the optional-name behavior is stated efficiently. 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?

Given the simple one-parameter schema and read-only discovery purpose, the description provides enough for an agent to invoke the tool correctly. However, without an output schema and with no annotations, the lack of detail about the returned schema structure or response format leaves some ambiguity for agents expecting specific return semantics.

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?

Schema description coverage is 100%, so the schema already documents the single optional 'name' parameter. The description repeats this behavior without adding new semantic detail, which matches the baseline of 3 for fully-covered parameters.

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 a specific verb ('Discover') and resource ('schema shapes'), and clarifies the two modes of operation. It doesn't explicitly differentiate from siblings, but the sibling names (extract, normalize, parse, structure, validate) are clearly distinct operations, so an agent can infer that this tool is for retrieving schema definitions.

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 explains how to use the tool (pass a name or omit), but gives no guidance on when this tool should be preferred over siblings or when alternatives might be more appropriate. There is no mention of exclusions, prerequisites, or related tools.

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

normalize_dataBInspect

Normalize data object to a named schema (invoice, receipt, contact, resume).

ParametersJSON Schema
NameRequiredDescriptionDefault
dataYesInput data object
target_schemaYesTarget schema name

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of explaining behavior, but it only restates the operation name. It does not disclose whether the input is mutated, what the return value looks like, how unknown schema names are handled, or whether normalization involves validation or transformation. The schema name examples hint at targets but not at semantics.

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 15-word sentence that front-loads the verb and object and includes the most useful differentiators. No redundant or filler language is present, so it is easy for an agent to scan and retain.

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?

The tool lacks an output schema and annotations, so the description alone must cover return values and behavior. It does not state what the normalized output looks like, whether the four schema names are exhaustive, or what happens on invalid input. For a transformation tool operating on nested objects, this is insufficient for an agent to invoke it confidently.

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 input schema documents both parameters with 100% coverage, so the baseline is 3. The description adds meaningful parameter semantics by enumerating concrete target_schema values (invoice, receipt, contact, resume), effectively providing an informal enum that helps an agent pick valid inputs. It does not add anything about the 'data' parameter beyond what the schema states.

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 states the verb ('Normalize') and the resource ('data object') with a concrete target: a named schema. The parenthetical examples (invoice, receipt, contact, resume) sharpen the meaning and suggest a distinction from siblings like extract_table or parse_invoice, though the distinction is not explicitly drawn.

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 offers no guidance on when to use this tool instead of sibling tools such as parse_invoice, structure_text, or validate_structure. There is no mention of prerequisites, input types, or scenarios where normalization is preferable to parsing or validation. The use case is only weakly implied by the schema examples.

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).

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesInvoice text or PDF extract

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the behavioral burden. It does disclose the output fields and the presence of a 'math_check' on line_items, which gives some behavior beyond a tautology. Still, it does not explain error handling, edge cases, whether the input is considered PDF versus raw text, or any side effects.

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 one compact sentence that is front-loaded with the core action and immediately lists the output fields. There is no filler, repetition, or unnecessary detail.

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 one-parameter, no-output-schema tool, the description covers the core action, the input type, and the expected output keys. It is slightly incomplete because the meaning of 'math_check' is not explained, but an agent can still invoke the tool correctly with reasonable confidence.

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?

Schema description coverage is 100%: the only parameter 'text' is already described as 'Invoice text or PDF extract.' The description adds no new parameter-level detail, so the schema does the heavy lifting and the description provides no extra compensation.

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 uses a specific verb ('parse') and a specific resource ('invoice text') and lists the target fields (vendor, amount, due_date, line_items). It is clearly aligned with invoice parsing and distinct enough from generic siblings like extract_table or structure_text, though it does not explicitly name or contrast the alternatives.

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 the tool should be used when an agent has invoice text or PDF extracts to parse, and the parameter description reinforces this. However, it gives no explicit guidance about when not to use it, prerequisites, or which sibling tools might be more appropriate for different tasks.

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesRaw text to structure
schema_nameNoTarget schema: invoice, receipt, contact, resumegeneric

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It does convey the core transformation behavior and the 'strict' schema constraint, which indicates validation-oriented parsing. However, it does not explain what happens on invalid or ambiguous input, whether the result is a single JSON object, or whether any side effects occur.

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 three short sentences with no filler. It front-loads the core action, then gives usage context, then lists valid schemas. Every sentence contributes distinct information.

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 two-parameter tool with full schema coverage, the description is close to complete: it states purpose, usage context, and supported schemas. However, there is no output schema and no annotations, so the description should more explicitly describe the return value or failure behavior. The phrase 'strict JSON schema' implies the output but does not fully specify it.

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?

Schema description coverage is 100%, so the schema already documents both parameters clearly. The description adds a useful list of supported schema names, but these are also repeated in the schema_name parameter description. Therefore the description adds minimal value beyond the structured schema.

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 states the action ('Convert messy text to strict JSON schema') and names concrete use cases: emails, chat logs, unstructured input. It also lists the supported schemas (invoice, receipt, contact, resume), which makes the resource and scope understandable. However, it does not explicitly distinguish itself from the sibling parse_invoice, which could also handle invoices.

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 gives clear context on when to use the tool: for emails, chat logs, and unstructured input. It does not mention when not to use it or name alternative sibling tools, so it stops short of full routing guidance. The presence of parse_invoice as a sibling makes this exclusion more valuable than it would otherwise be.

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).

ParametersJSON Schema
NameRequiredDescriptionDefault
dataYes
schema_nameYes

TDQS

C2.8/5.0
Behavior2/5

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 states what is enforced (field presence/types), but does not describe the return value, error behavior, whether validation is read-only, or what happens when validation fails.

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 filler. The purpose is front-loaded, and every sentence adds relevant information.

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 validation tool with no annotations and no output schema, the description is too thin. It omits return behavior, error handling, available schema names, and practical invocation details needed to call the tool correctly.

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 adds only minimal context for parameters. It implies 'data' is JSON and 'schema_name' identifies a schema, but does not define what a schema_name looks like, how schemas are referenced, or what data structure is expected.

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 names a specific action (Validate), resource (JSON against a schema), and scope (field presence and types). It doesn't explicitly distinguish itself from siblings, but the validation focus separates it clearly from parsing, normalization, and extraction tools.

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 on when to use this tool versus alternatives like get_schema, normalize_data, or parse_invoice. The agent must infer usage entirely from the tool name and general semantics.

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. 6 tool updates
    • First observedextract_table
    • First observedget_schema
    • First observednormalize_data
    • First observedparse_invoice
    • First observedstructure_text
    • First observedvalidate_structure

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    Extracts structured JSON data from unstructured text using predefined schemas for receipts, invoices, resumes, and emails. It allows users to transform messy text into organized data through built-in or custom-defined fields.
    1
    -
  • A
    license
    C
    quality
    D
    maintenance
    Provides deterministic data parsing and enrichment for AI agents, including bank statements, trade history, EDI, PDFs to structured markdown, and atomic enrichment for amounts, dates, and addresses, with strict schema enforcement to prevent hallucinations.
    37
    35
    2
    ISC
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to extract structured JSON from invoices and receipts in PDF and image formats using Claude Vision. Supports full document parsing, line item extraction, validation, and batch CSV export with API key or cryptocurrency payment options.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation2/5

There is meaningful overlap between parse_invoice, structure_text, and normalize_data, especially since structure_text and normalize_data both target the same schemas and parse_invoice is a more specific version of structure_text for invoices. extract_table, get_schema, and validate_structure are distinct, but the unstructured-text-to-schema tools have unclear boundaries.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: extract_table, get_schema, normalize_data, parse_invoice, structure_text, validate_structure. This makes the tool set predictable and easy to navigate.

Tool Count5/5

Six tools is a well-scoped size for a data structuring and validation server. Each tool addresses a meaningful step in the pipeline without excessive redundancy or unnecessary surface area.

Completeness4/5

The core workflow of extracting, normalizing, and validating structured data is covered, with schema discovery available. The main gap is the lack of a way to create or modify custom schemas, but the curated-schema approach makes this a minor limitation rather than a critical failure.

Resources