Skip to main content
Glama
izzipizzy

aparser-mcp

by izzipizzy

Add task

add_task

Queue a bulk parsing task by providing a parser stack and queries (inline or file). Returns a task ID to poll and fetch results later.

Instructions

Queue a bulk parsing task. Returns the task id (taskUid). Poll it with task_state / wait_task, then fetch the output with task_results. parsers: stack as a list of [parser_name, preset_name, ...overrideObjects], e.g. [["SE::Google","default"]]. $p1 in a resultsFormat refers to the first entry. results_format: output template, e.g. "$p1.serp.format('$link\n')"; omit to use the preset's own format. results_file_name supports macros like $datefile.format() ($taskId is NOT a valid macro).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
do_logNo
parsersYesParser stack, e.g. [["SE::Google","default"]].
queriesNoInline queries (when queries_file is not given).
priorityNo
queries_fileNoServer-side path to a queries file.
query_formatNoHow each input line becomes a query (default "$query").$query
config_presetNodefault
results_appendNo
results_formatNoOutput template; omit to use the preset format.
unique_queriesNo
results_prependNo
results_file_nameNo$datefile.format().txt
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It states 'Queue a bulk parsing task' implying non-blocking, but does not mention side effects, idempotency, error handling, or auth requirements. A queue tool should clarify whether duplicates are allowed and what happens on failure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph with the purpose and workflow in the first sentence, then parameter details. Every sentence adds value without fluff. However, it could benefit from structured formatting (e.g., bullet points for parameters) to improve readability for an agent scanning quickly.

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?

Given 12 parameters, no output schema, and a complex workflow, the description is incomplete. It explains the basic lifecycle (queue, poll, fetch) but does not describe error conditions, the structure of task results, or how to interpret the returned taskUid. Missing context for optional parameters like 'query_format' or 'unique_queries'.

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 coverage is only 42% (5 of 12 parameters described). The description adds meaningful detail for parsers (stack format with examples), results_format (template syntax with $p1), and results_file_name (macro rules). However, 7 parameters like 'do_log', 'priority', 'config_preset' receive no additional explanation, leaving gaps.

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 'Queue a bulk parsing task' and that it returns a taskUid. However, it doesn't explicitly differentiate from 'one_request' which likely handles single requests, missing an opportunity to specify when bulk is appropriate.

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 provides a clear post-usage workflow: poll with task_state/wait_task, then fetch results with task_results. However, it does not guide when to use this tool versus siblings like 'one_request', nor does it explain when to choose between 'queries' and 'queries_file' or priority settings.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/izzipizzy/aparser-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server