Skip to main content
Glama

get_extraction

Get the status and results of a CoreWise extraction by id. While status is 'processing', poll every 20-30 seconds. When status is 'completed' the response contains the structured synthesis (JSON object: summary, takeaways, highlights, notable quotes) and per-model markdown summaries. Works on your own extractions (API key required) and on public community extractions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
extraction_idYesThe extraction id returned by extract_url.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the burden of behavioral disclosure. It discloses async status handling (polling), the result structure upon completion, and API key requirement. It doesn't detail error cases or other statuses (e.g., failed), but for a read tool this is reasonably transparent.

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 two sentences, front-loaded with the main purpose, and includes useful operational details. Every sentence serves a purpose without 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?

For a single-parameter retrieval tool with no output schema and no annotations, the description thoroughly covers usage context, response format, and polling behavior. It even specifies the exact structured synthesis fields and per-model markdown summaries, making it self-sufficient.

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?

The schema already provides 100% coverage for the single parameter, describing extraction_id as 'The extraction id returned by extract_url.' The description doesn't add parameter-specific details beyond the id, 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.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool 'gets the status and results of a CoreWise extraction by id', which is a specific verb+resource+scope. This distinguishes it from siblings like extract_url (creation) and get_transcript (transcript retrieval).

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 explicitly advises polling every 20-30 seconds while processing and explains what to expect when completed. It also clarifies access scope (own extractions with API key, public community extractions). It doesn't explicitly mention alternatives, but the sibling tool purposes are sufficiently different that no confusion arises.

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.6/5.0
Disambiguation5/5

Each tool serves a distinct function: extract_url initiates extraction, get_extraction retrieves structured results, get_transcript fetches raw source text, and search_public_extractions queries the public library. There is no overlap in purpose, and descriptions clearly differentiate them.

Naming Consistency5/5

Tool names follow a consistent verb_noun pattern (extract_url, get_extraction, get_transcript, search_public_extractions), all using lowercase snake_case. The verbs vary but the structure is uniform, making it predictable.

Tool Count5/5

Four tools precisely cover the server's scope: initiate, retrieve results, retrieve transcript, and search public content. This is an efficient size with no redundancy or missing essentials.

Completeness5/5

The tool set covers the full extraction lifecycle: create (extract_url), poll/read results (get_extraction), access raw data (get_transcript), and discover existing extractions (search_public_extractions). There are no obvious gaps for the stated purpose.

Resources