Skip to main content
Glama

ag_table_markdown_extract

Extract structured tables from markdown text.

Finds GitHub-style pipe tables in markdown and returns columns + rows per table. Use on model output or docs before downstream structured processing.

Deterministic, fixture-verified, free for guests (rate-limited; pass your Guild api_key to use your member budget). Returns the result plus a Guild-signed provenance envelope.

payload MUST match this JSON Schema: {"type": "object", "properties": {"markdown": {"type": "string", "maxLength": 60000}}, "required": ["markdown"], "additionalProperties": false}

Output schema: {"type": "object", "properties": {"tables": {"type": "array"}, "count": {"type": "integer"}}, "required": ["tables", "count"], "additionalProperties": false}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
api_keyNo
payloadYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so thoroughly. It discloses determinism, fixture verification, guest rate limits, the option to pass an api_key for a member budget, and the inclusion of a provenance envelope. These are concrete behavioral traits beyond what annotations could provide.

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 front-loaded with purpose and usage, followed by concise behavioral notes and necessary schema details. Every sentence adds value; the embedded JSON Schema is justified because the tool's input schema is under-specified. No fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has a rich description that covers what it does, when to use it, constraints (max input size, additionalProperties false), cost/auth behavior, and output format. Even with no annotations, an agent has enough context to invoke it correctly and understand the result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only shows an opaque 'payload' object, but the description compensates by embedding the exact JSON Schema for payload, including the required 'markdown' property, its maxLength, and the constraint on additional properties. It also explains the optional api_key parameter in context of rate limits. This is far beyond the schema alone.

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 starts with a specific verb+resource: 'Extract structured tables from markdown text.' It further specifies the exact input format ('GitHub-style pipe tables') and the output ('columns + rows per table'), which distinguishes it from sibling table tools like ag_table_csv_to_json and ag_table_json_to_csv.

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 usage context: 'Use on model output or docs before downstream structured processing.' It does not explicitly name alternatives or exclusions, but for this niche markdown-extraction tool, the intended scenario is clear enough.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Tools are grouped by prefix (ag_calc_, ag_data_, ag_json_, ag_table_, ag_text_), which helps disambiguate. However, some clusters like guild_search, guild_check, guild_risk_score, and guild_best_agent have overlapping goals (all find or evaluate agents), and guild_prove and guild_prove_verify are tightly coupled but distinct. Overall, most tools have clear purposes.

Naming Consistency4/5

The tools follow a consistent verb_noun or domain_verb pattern (e.g., ag_calc_stats, ag_data_dedupe, guild_search). The mix of ag_ and guild_ prefixes is slightly inconsistent, but within each group naming is uniform. No chaotic mixing of cases (all snake_case). Minor deduction for the split prefix.

Tool Count3/5

39 tools is on the high side for a single MCP server. While the tools are genuinely useful and cover distinct deterministic utilities plus guild trust operations, the count feels heavy. A more focused split (e.g., separate server for deterministic utilities vs. guild trust) could improve coherence.

Completeness5/5

The server covers a broad set of deterministic utilities (statistics, unit conversion, JSON, CSV, regex, date normalization) and a full trust/reputation workflow (register, search, check, risk score, escrow, attest, record, passport, verify, preflight). There are no obvious gaps: for the declared capabilities, the tool surface is comprehensive.