Skip to main content
Glama

Server Details

Statements, invoices, tables, ledgers — every result carries its own arithmetic proof.

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
Repository
mario03690/ai-netcafe
GitHub Stars
0
Server Listing
ai-netcafe

Available Tools

23 tools
check_jobCheck a long-running jobA
Read-onlyIdempotent
Inspect

Get the status or result of a job started by deep_research, translate_pdf, or make_slides. Poll every 15-30 seconds until status is "done" or "error". While work is pending, follow retry_after_seconds and next_action; when complete, prefer structured_result when present. Example — GET https://ainetcafe.com/t/check_job?job_id=

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesThe job_id returned when the task was started.

Output Schema

ParametersJSON Schema
NameRequiredDescription
kindNo
errorNo
job_idYes
resultNo
statusYes
is_terminalNo
next_actionNo
structured_resultNo
retry_after_secondsNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare read-only/idempotent behavior. The description adds valuable behavioral context beyond annotations: polling interval, status handling ('done'/'error'), and the role of retry_after_seconds/next_action. It doesn't fully describe error edge cases or rate limits, but it exceeds the baseline with meaningful operational detail.

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 dense, information-rich sentences with a helpful example. Every sentence earns its place, front-loads purpose, and then gives usage behavior. No fluff.

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?

Despite having an output schema (which handles return value specifics), the description covers the full usage cycle: how to poll, what to look for, how to handle wait vs. completion, and where to find the job_id. For a polling tool with one parameter, this is complete and 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 input schema already provides 100% coverage with a clear description of job_id ('returned when the task was started'). The description reinforces this by mentioning 'id-from-a-job-tool', but adds little semantic value beyond the schema. 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 states a specific verb ('Get the status or result') and a clear resource ('a job started by deep_research, translate_pdf, or make_slides'). It distinguishes from sibling tools by naming the job-starting tools and clarifies it is for polling. The example URL adds specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: poll every 15-30 seconds, follow retry_after_seconds and next_action while pending, and prefer structured_result when complete. This tells the agent exactly when and how to use the tool versus alternatives, even including a URL example.

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

check_resumeCan an ATS parse this resume?A
Read-onlyIdempotent
Inspect

Check a resume (PDF or .docx) the way an applicant tracking system reads it: is the text extractable, are email/phone/sections findable, do multi-column layouts, tables or emoji break parsing. Returns a score plus concrete fixes ordered by impact — like the W3C validator, but for resumes.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic URL of the resume (PDF or .docx).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already convey the read-only, idempotent, and non-destructive nature. The description adds behavioral detail about how the tool analyzes parsing issues and returns actionable fixes, and the W3C validator analogy gives a concrete mental model. It does not contradict annotations, and there are no hidden side effects mentioned.

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 compact—two sentences that front-load the core action, detail the checks performed, and describe the output. Every sentence earns its place, using the W3C validator analogy for quick comprehension. 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?

For a tool with a single parameter and an output schema, the description covers the purpose, input constraints, method, and output type. It is complete enough for an agent to correctly select and invoke the tool without additional context. The sibling tools are clearly different in scope.

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 input schema already fully describes the only parameter (url) with its type and accepted formats. The description does not add significant new parameter-specific semantics beyond what the schema provides. With 100% schema coverage, 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 checks resumes for ATS compatibility, listing specific checks (text extractability, email/phone/sections, multi-column layouts, tables, emoji). It is distinguished from sibling tools by focusing on resumes and using the W3C validator analogy, making the purpose unambiguous.

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 implies when to use the tool: when a resume needs ATS parsing validation. It provides clear context about the input (PDF/.docx URL) and the type of output (score and fixes). However, it does not explicitly mention alternatives or exclusions, such as when to use check_job instead.

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

convert_to_pdfConvert a web page or HTML to PDFA
Read-onlyIdempotent
Inspect

Print-quality PDF from a URL or raw HTML via self-hosted Gotenberg (headless Chromium). Returns a hosted PDF download URL. Example — GET https://ainetcafe.com/t/convert_to_pdf?url=https://example.com

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoPage URL to convert (either url or html is required).
htmlNoRaw HTML to convert (alternative to url).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already cover readOnly, idempotent, and non-destructive behavior. The description adds that it returns a hosted PDF download URL and uses headless Chromium via Gotenberg, providing useful implementation context without contradicting the annotations.

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 concise sentences plus an example. Every sentence adds value: core functionality, return format, and a concrete invocation example. No fluff or redundant content.

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 2-parameter tool with rich annotations and an output schema, the description covers input types, output format, and example invocation. It omits potential edge cases like URL accessibility requirements, but this is acceptable given the high contextual coverage from annotations and schema.

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 descriptions cover both parameters fully (100% coverage), so the baseline is 3. The description reinforces 'URL or raw HTML' but does not add format constraints or edge-case behavior beyond what the schema already provides.

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 states 'Convert a web page or HTML to PDF' with a specific verb and resource, then clarifies 'Print-quality PDF from a URL or raw HTML via self-hosted Gotenberg'. This clearly differentiates it from sibling conversion tools like pdf_to_markdown, which reverse the direction.

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 implies usage through the example GET request and the phrase 'via self-hosted Gotenberg', but it does not explicitly state alternatives or when-not-to-use. The context is clear enough for an agent to select this tool for HTML-to-PDF needs.

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

csv_to_qboTransaction CSV → QuickBooks .qbo bank feed fileA
Read-onlyIdempotent
Inspect

Convert a transaction CSV into a .qbo / OFX bank-feed file that QuickBooks and similar accounting software import directly. Needs date, description and amount columns (or debit + credit). Pairs with extract_statement: statement PDF in, importable bank feed out.

ParametersJSON Schema
NameRequiredDescriptionDefault
csvNoCSV content with a header row.
urlNoOr a link to the CSV.
bank_idNoRouting / bank identifier, if your import asks for one.
currencyNoThree-letter currency code, default USD.
account_idNoYour account number as the accounting software expects it.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint:false, so the safety profile is clear. The description adds valuable behavioral context by specifying input format requirements and the output's purpose (importable by QuickBooks). No contradiction with annotations.

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 core action, and every sentence contributes: first states the conversion, second gives input requirements and a sibling pairing. No wasted words.

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?

With good annotations, an output schema, and 100% schema coverage, the description covers the essential purpose, input constraints, and relationship to extract_statement. A minor gap is not clarifying that either csv or url must be provided, but overall the context is sufficient for an AI agent to select and invoke the tool.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds meaning by clarifying that the CSV must contain date, description, and amount (or debit+credit) columns, which directly informs how to use the 'csv' parameter. This goes beyond the schema's 'CSV content with a header row.'

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 states a specific verb ('Convert'), a clear resource ('transaction CSV'), and a distinct output ('.qbo / OFX bank-feed file'), making the tool's purpose immediately obvious. It also distinguishes from siblings by explicitly pairing with extract_statement (PDF input to bank feed output).

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 provides clear context by stating the required CSV columns ('date, description and amount columns (or debit + credit)') and mentions the complementary sibling tool extract_statement. However, it does not explicitly state when not to use this tool or list alternative tools for CSV conversion, so it stops short of a 5.

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

deep_researchRun an autonomous research agentAInspect

Start an autonomous web research task. The agent plans sub-questions, searches the web, reads the sources and writes a report with citations — this is real research, not a single model call, and takes 2-5 minutes. Returns a job_id immediately; poll check_job to get the report. Use this when you need sourced, current information rather than what a model already knows. Powered by gpt-researcher (29k stars) hosted at AI NetCafé. Example — tools/call deep_research {"topic":"State of MCP adoption in 2026?"} → poll check_job

ParametersJSON Schema
NameRequiredDescriptionDefault
depthNoquick = outline only (~1 min); standard = full cited report (~3 min). Default standard.
topicYesThe research question. Phrase it as a question, not a keyword.

Output Schema

ParametersJSON Schema
NameRequiredDescription
job_idYes
statusYes
poll_interval_secondsNo

TDQS

A4.6/5.0
Behavior4/5

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

The description discloses key behavioral traits beyond the annotations (which are all false): it is asynchronous ('Returns a job_id immediately'), takes 2-5 minutes, and is a multi-step process (plans, searches, reads, writes). It also mentions the underlying system (gpt-researcher, AI NetCafé). It does not mention potential failures or rate limits, but for this tool the disclosed context is substantial.

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 packed with useful information and is front-loaded with purpose. Each sentence serves a function: behavior, workflow, usage guidance, and example. The mention of '29k stars' is mildly extraneous for an AI agent, but it does not detract significantly; it could be trimmed without losing critical guidance.

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?

Given the asynchronous nature, 2 parameters, an output schema, and sibling check_job, the description covers the full workflow: what it does, how long it takes, what it returns immediately, how to follow up, and when to use it. The example ties everything together, making it complete for a tool of this complexity.

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?

Schema coverage is 100% for both parameters, so the baseline is 3. The description adds extra value by instructing to phrase the topic as a question rather than a keyword, and by providing a concrete example. The depth parameter is well-explained in the schema and the description's example reinforces the default.

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 strong verb+resource: 'Start an autonomous web research task.' It clearly distinguishes this from sibling tools like check_job by explaining it initiates a research process and returns a job_id immediately. The phrase 'real research, not a single model call' further clarifies its unique scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is given: 'Use this when you need sourced, current information rather than what a model already knows.' It also tells the agent to poll check_job for the result, naming the specific alternative/follow-up tool. This gives clear when-to-use and what-to-do-next context.

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

doc_translate_cndoc translate cnAInspect

文档翻译成中文,保留段落结构。逐段翻译并核对段落条数进出一致 —— 漏译最常见的形态就是整段消失,这里会当场发现。入参 url(文档链接)或 text,可选 target(默认 zh)。自证不通过不计费。

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo
textNo
targetNo

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description must cover behavior. It mentions the self-verification of paragraph counts to catch omissions, and also states billing policy ('自证不通过不计费'), which adds transparency beyond an average description. However, it does not detail error scenarios or 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 compact and front-loaded with the primary action, followed by key details and billing logic. Each sentence adds value, with no redundancy. It's a single paragraph but well-structured.

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?

The description covers the main purpose, parameter semantics, validation behavior, and billing policy. It lacks details on output format limitations, supported document types, or error handling, but these may be inferred from the translation context. For a tool with no output schemaaine, it is reasonably complete.

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?

Schema description coverage is 0%, but the description explicitly defines each parameter: url as document link, text as presumably direct text, and target with default 'zh'. This fully compensates for missing schema descriptions, adding meaningful semantics.

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's function: '文档翻译成中文' (translate document to Chinese), with a specific resource and preserve paragraph structure. It distinguishes itself by mentioning the validation of paragraph counts, a unique feature not seen in sibling tools.

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 explains the input options: '入参 url(文档链接)或 text,可选 target(默认 zh)', giving clear guidance on what to provide, but does not explicitly contrast with sibling tools like translate_pdf. It provides context on when to use but lacks exclusions.

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

extract_invoicesA batch of invoices → one ledger-ready table (arithmetic-checked)A
Read-onlyIdempotent
Inspect

Give it up to 20 invoice URLs (PDF or page images) and get back one table ready to post: number, date, seller, buyer, net / tax / gross, currency. Every row is checked in code — net + tax must equal gross — and the batch total is re-added independently, so a row the model misread is flagged with the exact difference instead of quietly landing in your books. Mixed currencies get no batch total on purpose: adding them together would be an accounting error. CSV is UTF-8 with BOM so Excel opens it right.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsYesInvoice URLs — comma-separated, or pass an array. Up to 20 per call.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses that every row is arithmetic-checked (net + tax = gross) and misreads are flagged with exact differences, which is not captured by the annotations. It also explains that mixed currencies produce no batch total to avoid accounting errors, and that CSV includes a UTF-8 BOM for Excel compatibility, providing valuable behavioral detail.

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 four sentences, front-loaded with the core action and followed by error-checking, mixed-currency, and formatting details. Every sentence adds unique information without redundancy, making it appropriately compact for the tool's complexity.

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?

Given the presence of an output schema and annotations, the description covers input constraints, processing behavior, and output encoding in detail. It mentions the ledger-ready fields, arithmetic validation, and Excel compatibility, ensuring a user understands what to expect from the tool.

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 schema already describes the 'urls' parameter fully (comma-separated or array, up to 20), and the description adds that inputs can be PDFs or page images. Since schema coverage is 100%, the description adds only the file-type constraint, which is a modest enhancement over the schema.

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 states 'Give it up to 20 invoice URLs (PDF or page images) and get back one table ready to post: number, date, seller, buyer, net / tax / gross, currency' clearly identifying the tool's function and output. It distinguishes from siblings like extract_tables by specifically targeting invoices with ledger-ready output and arithmetic checks.

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 clearly indicates the tool is for batch invoice extraction from URLs, implying usage for invoice processing. However, it doesn't explicitly mention when not to use it or suggest alternative tools like extract_tables for other documents, so it doesn't reach the highest bar for exclusionary guidance.

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

extract_statementBank statement PDF → transactions + reconciliation checkA
Read-onlyIdempotent
Inspect

Turn a bank statement or transaction PDF into a clean transaction table (JSON + CSV), then cross-check it: opening + credits - debits must equal the stated closing balance. If it does not balance you get the exact difference and which row the running balance first breaks at — so you know whether the table is safe to use for accounting. Text-layer PDFs only (scanned images not yet supported).

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic URL of the statement PDF.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations (read-only, idempotent, non-destructive), the description reveals valuable behavioral traits: the reconciliation cross-check formula, the output formats (JSON + CSV), and the exact failure feedback (difference and row where running balance breaks). This gives the agent a strong grasp of what to expect.

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: the first states the primary action and output, the second details the reconciliation check and failure reporting, followed by a clear limitation. Every sentence contributes, and the key info is front-loaded.

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?

With one parameter, robust annotations, and an output schema present, the description covers the necessary context: the input, the processing logic, the return behavior, and an explicit limitation. There are no significant gaps for agent selection and invocation.

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 fully describes the only parameter (`url` with description). The description adds minimal extra meaning—only implying the URL must point to a text-layer PDF—but the baseline of 3 is appropriate given the high schema coverage.

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 ('Turn... into') and names the exact resource: 'a bank statement or transaction PDF'. It clearly distinguishes from sibling tools like extract_tables by focusing on bank-specific reconciliation rather than generic table extraction.

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?

It implicitly tells when to use: for bank statements requiring a reconciled transaction table, and explicitly states the constraint 'Text-layer PDFs only (scanned images not yet supported)' as a when-not. However, it doesn't explicitly name alternatives for scanned PDFs or generic table extraction.

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

extract_tablesPDF tables → structured rows (with schema alignment)A
Read-onlyIdempotent
Inspect

Extract tables from a PDF into structured rows (JSON + CSV). Pass fields to force a fixed set of columns — that aligns a pile of documents that each name their headers differently into one consistent table. Rows the model was unsure about are flagged rather than guessed. Text-layer PDFs only.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic URL of the PDF.
fieldsNoOptional comma-separated target columns, e.g. "invoice_no,supplier,date,amount". Omit to infer from the header.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

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

Beyond the annotations (readOnly, idempotent, non-destructive), the description adds valuable behavioral traits: 'Rows the model was unsure about are flagged rather than guessed' and the limitation 'Text-layer PDFs only.' This gives insight into output quality and compatibility without contradicting annotations.

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 sentences, front-loaded with the core function, followed by the fields explanation, then constraints and behavioral note. Every sentence adds value with no redundancy or wasted words.

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 tool with two parameters and an existing output schema, the description covers purpose, parameter usage, limitations, and uncertainty handling. It is complete enough for an agent to invoke the tool correctly without additional context.

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 input schema already covers both parameters with 100% coverage, so the baseline is 3. The description adds some context for the fields parameter by explaining its purpose (aligning differently-named headers), but does not introduce new syntax or format details beyond the schema.

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 extracts tables from a PDF into structured rows (JSON + CSV), specifying the resource (PDF) and output format. It distinguishes from siblings like pdf_to_markdown or extract_statement by emphasizing structured tabular data and the option to force a fixed column set.

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 provides clear context on when to use the tool, especially for aligning documents with inconsistent headers by passing fields. It also sets a constraint with 'Text-layer PDFs only,' implying it should not be used for scanned/image PDFs, but it does not explicitly name alternative tools.

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

fix_csv_encodingFix a CSV that opens garbled in ExcelA
Read-onlyIdempotent
Inspect

Detect the real encoding of a CSV (GB18030, Shift-JIS, Windows-1252…), repair mojibake (UTF-8 that was read as Latin-1, e.g. "é"), and re-emit UTF-8 with a BOM so Excel opens it correctly.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoPublic URL of the CSV.
textNoOr paste the CSV content directly.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

The description discloses the transformation behavior (detect, repair, re-emit) beyond what annotations provide. It also indicates the output format (UTF-8 with BOM). Annotations already declare read-only and non-destructive, so the description adds meaningful context about the specific processing steps.

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 core action, and every part adds value: encoding types, mojibake examples, and the BOM detail. No filler or redundant information.

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?

The description covers the main functionality and expected input/output. It does not mention that one of two parameters must be supplied, nor does it clarify asynchronous behavior (sibling check_job suggests possible job-based execution), but the output schema exists and the core behavior is well-explained.

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 100% with both 'url' and 'text' described, so the baseline is 3. The description implies these are two alternative input methods ('Detect... and re-emit' doesn't add new parameter meaning), but it doesn't clarify that at least one is needed. No additional semantic value is added beyond the schema.

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's function: detect real encoding, repair mojibake, and re-emit UTF-8 with BOM. The verb 'repair' and specific resource 'CSV' make it distinct from sibling tools, which are largely PDF-related.

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 title and description provide clear context: use when a CSV opens garbled in Excel. It doesn't explicitly mention alternatives or exclusions, but the use case is unambiguous. Since there are no closely related CSV tools (except csv_to_qbo, which serves a different purpose), this is sufficient.

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

make_slidesGenerate a PowerPoint deckAInspect

Turn a topic or an outline into a real downloadable .pptx file — not a link into someone's web editor. Returns a job_id; poll check_job for the download URL. Usually 1-3 minutes. Powered by Presenton (open source) hosted at AI NetCafé. Example — tools/call make_slides {"topic":"Q3 review","slides":8} → poll check_job

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe topic, or a full outline to follow.
slidesNoNumber of slides (default 8).
languageNoOutput language, e.g. "Chinese", "English". Default Chinese.
instructionsNoOptional extra guidance on style or emphasis.

Output Schema

ParametersJSON Schema
NameRequiredDescription
job_idYes
statusYes
poll_interval_secondsNo

TDQS

A4/5.0
Behavior4/5

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

Despite all annotations being false, the description discloses key behavioral traits: it is asynchronous (returns a job_id, poll check_job), has a typical latency (1-3 minutes), and ensures a real file output rather than a web editor link. It also names the underlying service (Presenton) and hosting, adding trust and operational context.

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 compact and front-loaded with the core value proposition. It packs essential information (async behavior, expected time, example) into three sentences with no filler or redundancy.

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?

Given the tool's moderate complexity (async flow, polling dependency), the description adequately covers the workflow via the example and mention of check_job. An output schema exists, so explicit return-value details are not required. Minor gaps like error handling or rate limits exist but are not critical given the output schema and clear polling pattern.

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 baseline is 3. The description does not add much parameter-specific detail beyond what the schema already provides; the example shows usage of 'topic' and 'slides' but does not explain formats, defaults, or constraints beyond the schema.

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's function: turning a topic or outline into a downloadable .pptx file, explicitly distinguishing it from a web editor link. The verb 'turn' and resource '.pptx file' are specific, and the contrast with 'not a link' adds precision.

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 when to use (when you need a generated PowerPoint deck) and gives an example call, but it does not explicitly name alternatives or exclusions among sibling tools. It provides context about async polling but stops short of clear usage boundaries.

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

meeting_packmeeting packBInspect

会议录音 → 纪要包 PDF:转写、要点、决议、待办。纪要里点名的负责人会与转写原文比对 —— 把任务安排给一个从没在录音里出现过的人,报告会判不通过。入参 url(音频直链)。自证不通过不计费。

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo
audioNo

TDQS

B3.3/5.0
Behavior1/5

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

There are no annotations provided, so the description must carry the burden of disclosing behavioral traits. The description provides a unique feature: verification of assigned persons against the transcript (if a person never appears, report fails). It also states '自证不通过不计费' (no charge if self-verification fails), which is a critical behavior. However, this internal validation is not clearly a 'behavioral trait' like side effects or permissions; it's a business rule, but it does add transparency. Still, it lacks disclosure of potential errors (e.g., what happens if URL is invalid) or side effects. Given the lack of annotations, this is a moderate gap, but the description does add significant context, so I'd rate 3? However, the scoring guide says score 1 if description contradicts annotations, which it doesn't; but without annotations, the description should cover major traits. The description is sparse but adds key rule. I'll go with 3? But the calibration example for update_drive with no annotations and vague description got 2, here we have more specifics. I'll rate 3 as it adds value but misses error handling.

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 compact (single sentence) and front-loaded with the main purpose, then adds critical constraints (verification rule, billing). It is efficient and readable, though it could be split into clearer sentences for readability, but it's well-structured for brevity.

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 tool's complexity (audio-to-PDF with verification), the description is fairly complete: it states input, output, verification rule, and billing policy. However, it lacks details on error handling, supported audio formats, or what the report failure means practically. There is no output schema, so the description should explain return values or failure modes, which it doesn't. Thus, it's adequate but incomplete.

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 has 2 parameters: 'url' (string) and 'audio' (object), with 0% description coverage. The description explains 'url' is the audio direct link, adding meaning beyond the schema. However, the second parameter 'audio' is completely unexplained, and it's unclear how it differs from 'url'. With schema coverage at 0%, the description must compensate for all parameters, which it only partially does for 'url'. Thus, a 2 is warranted.

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 '会议录音 → 纪要包 PDF' (meeting recording → minutes package PDF), specifying the conversion from audio to a PDF containing transcript, key points, decisions, and action items. It uses a specific verb 'convert' implied by the arrow, and resource 'meeting_pack' with clear input (audio URL), distinguishing it from siblings like transcribe_audio and pdf tools.

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 mentions '入参 url(音频直链)' (input URL of audio direct link), providing clear input requirements. It also implies when to use this tool (for meeting recordings that need a structured minutes package), but it does not explicitly state when NOT to use it or mention alternatives (e.g., use transcribe_audio for plain transcription). Since there is no exclusion, a 4 is appropriate.

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

pdf_add_page_numbersAdd page numbers to a PDFA
Read-onlyIdempotent
Inspect

Stamp page numbers or footer text onto every page of a PDF. Supports a starting number, roman numerals, skipping a cover page, position and font size — the combination Acrobat cannot do without scripting. Template supports {n} and {total}, e.g. "Page {n} of {total}".

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic URL of the PDF.
textNoTemplate, default "{n}". Use {n} and {total}.
styleNoarabic (default) | roman (i, ii, iii) | ROMAN (I, II, III)
positionNobottom-center (default) | bottom-left | bottom-right | top-center | top-left | top-right
start_atNoNumber to start from (default 1).
font_sizeNoFont size, default 10.
skip_firstNoLeave this many leading pages unnumbered, e.g. 1 for a cover.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the description does not need to restate these. It adds template syntax and feature options, but does not disclose processing behavior such as asynchronous execution or how the output file is returned. Since output schema exists, this is not a major gap, but it limits the score.

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 sentences long, each serving a clear purpose: stating the action, listing capabilities, and providing a template example. No fluff, and the most critical information appears first.

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?

With 7 parameters, output schema, and annotations present, the description covers the core functionality and template syntax. It could mention whether the operation is asynchronous or returns a job ID (given check_job sibling), but the output schema likely covers return values. Overall, it is sufficiently complete for an agent to use.

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?

Schema coverage is 100%, so the baseline is 3. The description adds value by giving a concrete template example ('Page {n} of {total}') and enumerating supported options that map to parameters (start_at, style, skip_first, etc.), enhancing understanding beyond the schema.

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 opens with 'Stamp page numbers or footer text onto every page of a PDF,' which uses a specific verb and resource, clearly distinguishing it from sibling tools like pdf_to_markdown or redact_text. It also skims through main features, reinforcing the tool's purpose.

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 states 'the combination Acrobat cannot do without scripting,' which gives context on when to use this tool. However, it does not explicitly name alternatives or exclusions, so it stops short of a 5.

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

pdf_page_countpdf page countAInspect

Count pages and report each page size of a PDF (by URL).

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo

TDQS

A3.7/5.0
Behavior3/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 of behavioral disclosure. 'Count' and 'report' imply a non-destructive read operation, but the description does not disclose network-fetching behavior, error handling for invalid URLs or non-PDFs, or the units/format of reported page sizes.

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 front-loaded sentence with no filler: it states the verb, target, and output intent directly. Every word contributes to understanding the tool.

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 one-parameter, read-only utility, the description covers the essential input (URL) and output (page count and per-page sizes). It is not fully complete because there is no output schema and the exact return structure is implicit, but the low complexity makes the one-liner nearly sufficient.

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?

The input schema exposes only a bare `url` property with no type, description, or required flag, and schema coverage is 0%. The description's '(by URL)' adds minimal clarification over the property name and does not specify URL schemes, requiredness, or how additional properties should be handled.

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 ('Count') and resource ('pages ... of a PDF'), and also specifies the output behavior ('report each page size'). This clearly distinguishes it from sibling PDF tools such as pdf_to_markdown or pdf_add_page_numbers.

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?

It is clear that the tool is for page counting and page-size reporting, and that the PDF is accessed by URL. However, no explicit when-to-use guidance or comparison with alternative tools is provided; the usage context is implied rather than stated.

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

pdf_to_markdownPDF or scanned page → structured MarkdownA
Read-onlyIdempotent
Inspect

Convert a PDF (or a scanned page image) into clean Markdown that keeps headings, lists and tables, and puts multi-column pages in the right reading order. Text-layer PDFs are read exactly and cost far less; images go through a vision model.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic URL of the PDF, or of a page image (png/jpg) for scanned documents.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds useful behavior beyond annotations: exact text-layer extraction, vision model for images, cost differences, and reading order handling. It exceeds the baseline and does not contradict any annotation.

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 tightly written sentences. The first sentence states the core action and scope, the second clarifies behavior and cost. No filler or repetition, and the most important information is front-loaded.

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?

Given an output schema exists and annotations are present, the description covers input types, formatting preservation, multi-column handling, and cost/processing differences. It lacks explicit mention of file size limits or language support, but the provided information is sufficient for most use cases.

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 defines the single 'url' parameter with 100% coverage and a clear description. The tool description does not add further parameter-specific detail beyond what the schema provides, so it meets the baseline but not more.

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 converts PDFs or scanned images into Markdown with formatting preservation and reading order. The verb 'convert' and specified output make the purpose unambiguous, and it distinguishes itself from sibling tools like extract_tables or translate_pdf.

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?

Provides clear context on when to use the tool (for text-layer PDFs vs scanned images) and notes cost differences, but does not explicitly name alternative sibling tools or exclusion criteria. This is more specific than generic guidance but stops short of explicit 'use this instead of X' instructions.

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

pdf_watermarkpdf watermarkBInspect

Stamp diagonal text watermark on every page of a PDF (by URL). text = the watermark.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo
textNo

TDQS

B3.4/5.0
Behavior2/5

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

There are no annotations, so the description carries the full disclosure burden. It discloses the stamping behavior but does not clarify whether the original PDF is modified, whether a new watermarked PDF is returned, what the output format is, or whether authentication is needed.

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 exceptionally concise: one sentence captures the action, scope, styling, and input source; another single sentence defines the text parameter. There is no redundant information or filler.

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?

With no annotations and no output schema, the description is incomplete. It tells the agent what the tool does but omits the tool's return value, side effects on the input PDF, and any limitation or access requirements around the URL input.

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 description partially compensates for the schema having 0% coverage: it explicitly says 'text = the watermark' and hints that the PDF is referenced by URL. However, it does not define the required format or whether the url parameter is required, leaving an important gap for a two-parameter tool.

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 and resource: 'Stamp diagonal text watermark on every page of a PDF (by URL).' It also clarifies that the text argument is the watermark, making the tool's purpose clear and differentiating it from sibling tools like pdf_add_page_numbers or pdf_to_markdown.

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 usage context: watermark a PDF page-by-page using a URL and text. However, it does not explicitly state when to choose this tool over alternatives, nor does it mention any exclusion conditions or prerequisites.

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

pptx_to_pdfpptx to pdfCInspect

PowerPoint .pptx (by URL) → PDF handout.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description must carry the behavioral disclosure burden. It mentions that input comes by URL and output is a PDF handout, but it does not disclose network requirements, authentication needs, file size limitations, error behavior, or whether the conversion is asynchronous.

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 extremely concise and front-loaded, using a compact arrow notation that is immediately scannable. There is no filler or redundant repetition of the tool name.

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 simple one-parameter conversion tool, the core input and output are stated, and the URL source is specified. However, given the absence of annotations and the presence of a broadly named convert_to_pdf sibling, additional context about expected behavior and return values would make the description more complete.

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?

The input schema has a single 'url' property with no type, description, or required flag, and 0% schema description coverage. The description adds minimal meaning by indicating the URL should point to a .pptx file, but it does not explain URL formatting, supported hosts, or what happens with invalid URLs.

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 conversion from PowerPoint .pptx (by URL) to a PDF handout, identifying the input format, source mechanism, and output format. This distinguishes it from sibling tools like xlsx_to_pdf, though it uses an arrow rather than an explicit verb.

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 provided about when to use this tool versus alternatives such as convert_to_pdf or xlsx_to_pdf. The description gives no context for choosing this tool or any exclusions.

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

redact_textRedact secrets and PII before sending text onA
Read-onlyIdempotent
Inspect

Strip emails, phone numbers, ID numbers, API keys, private keys, JWTs, card numbers and IPs out of text, returning the redacted text plus a mapping table to restore them afterwards. Rule-based only — no model sees the input. The same value always maps to the same placeholder, so the answer can be restored.

ParametersJSON Schema
NameRequiredDescriptionDefault
onlyNoOptional comma-separated subset, e.g. "EMAIL,API_KEY,PRIVATE_KEY".
textYesThe text to redact.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior5/5

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

The description reveals deterministic placeholder mapping and the fact that no model sees the input, adding to annotations (readOnlyHint, idempotentHint). It also clarifies the output format with a mapping table.

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 core action and includes only meaningful caveats (determinism, rule-based). No wasted words.

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 tool with an output schema and only two simple params, this description fully covers the purpose, behavior, privacy implications, and determinism. The existence of an output schema means return values are already structured.

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?

Both parameters ('text' and 'only') are already well-described in the schema with 100% coverage. The description does not add additional parameter-specific semantics beyond the general behavior, 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 uses the specific verb 'Strip' and lists concrete PII types (emails, phone numbers, API keys), plus states the output (redacted text and mapping table). This clearly differentiates it from sibling tools which are unrelated (e.g., pdf_to_markdown, convert_to_pdf).

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 tells the agent when to use it: 'before sending text on' and emphasizes rule-based operation with no model passing, which guides privacy-sensitive use. It doesn't explicitly exclude alternatives, but none of the siblings are redaction tools.

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

transcribe_audioTranscribe audio to textAInspect

Fetch an audio file from a URL and transcribe it to text with open-source Whisper (100 languages, self-hosted). Good for voice memos, podcast clips and meeting recordings up to ~15 MB. Example — GET https://ainetcafe.com/t/transcribe_audio?url=

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic URL of the audio file (mp3/wav/m4a/ogg, ≤15 MB).
languageNoHint language code like "zh", "en"; default auto-detect.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior3/5

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

The annotations are all false and give little safety insight, so the description carries the burden. It adds useful behavioral context such as 'self-hosted' Whisper, the 15 MB limit, and the GET example, but it does not disclose potential side effects, error behavior, or whether the audio file is stored. There is no contradiction with the annotations.

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 concise sentences plus a concrete example. The main action, use cases, and invocation method are all front-loaded without unnecessary words. Every sentence earns its place.

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 is moderately complex (network fetch, transcription, external resources), but the description covers selection context, constraints, and invocation via an example. An output schema exists, so return-value details are not needed. All essential information is present.

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 description covers both parameters fully (100% coverage), including the public URL constraint and language default auto-detect. The tool description reinforces the existing schema details but does not add meaningful new parameter information beyond the example URL format.

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 opens with a specific verb and resource: 'Fetch an audio file from a URL and transcribe it to text', which precisely defines the tool's function. It further clarifies with use cases like voice memos, podcast clips, and meeting recordings, making it wholly distinct from any sibling tool.

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 provides clear context for when to use the tool: 'Good for voice memos, podcast clips and meeting recordings up to ~15 MB.' It also gives an explicit example invocation. It does not name alternatives or exclusions, so it falls one step short of the highest rating.

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

translate_pdfTranslate a PDF keeping its layoutAInspect

Translate a PDF from a URL while preserving the original layout — formulas, figures and two-column academic typesetting stay intact, unlike ordinary translators that flatten the document. Returns a job_id; poll check_job for the download links (translated-only and bilingual side-by-side). Typically 20-60 seconds for a few pages. Powered by PDFMathTranslate (36k stars) hosted at AI NetCafé. Example — tools/call translate_pdf {"url":"","target":"zh"} → poll check_job

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesDirect URL to the PDF (e.g. an arXiv PDF link).
pagesNoHow much to translate. first = 1 page, first5 = first 5 pages (default), all = whole document (slow and expensive).
lang_toNoTarget language, e.g. "Simplified Chinese", "Japanese". Default Simplified Chinese.

Output Schema

ParametersJSON Schema
NameRequiredDescription
job_idYes
statusYes
poll_interval_secondsNo

TDQS

A4.1/5.0
Behavior5/5

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

The description discloses asynchronous behavior (returns job_id, poll check_job), expected latency (20-60 seconds), output formats (translated-only and bilingual), and underlying technology (PDFMathTranslate). This adds significant context beyond the sparse annotations.

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 concise, front-loaded with purpose, and includes a concrete example. However, the example contains an incorrect parameter name, which slightly undermines the efficiency and reliability of the information.

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?

With a full input schema and an output schema present, the description appropriately explains the async workflow, polling, and output types. It does not need to detail return values. The minor error in the example does not compromise overall completeness but detracts slightly.

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?

While schema coverage is 100% and the schema already documents all parameters, the description's example uses 'target' instead of the actual parameter 'lang_to', which is misleading. This introduces an ambiguity that could cause incorrect tool invocation.

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's function: 'Translate a PDF from a URL while preserving the original layout' and highlights unique features (formulas, figures, two-column typesetting) that distinguish it from ordinary translators and sibling tools like pdf_to_markdown. The example flow reinforces the purpose.

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 provides clear context on when to use the tool (for layout-preserving PDF translation from a URL) and contrasts it with 'ordinary translators that flatten the document'. However, it does not explicitly specify when not to use it or name alternative tools among the siblings.

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

webpage_to_docxwebpage to docxCInspect

Any article URL → Word .docx (rendered page → clean document).

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo

TDQS

C2.9/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 for behavioral disclosure. It mentions 'rendered page → clean document' which hints at processing, but does not disclose any side effects (e.g., network fetch, potential rendering issues, large files) or any caveats about page types supported.

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 succinct and front-loaded with the core purpose. 'Any article URL → Word .docx' is efficient, and the parenthetical adds useful detail. Could be slightly more informative without losing conciseness.

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 tool has one optional parameter (no required params), no output schema, and no annotations, the description is minimally adequate. It conveys the main function but lacks guidance on edge cases, error handling, or what constitutes an 'article URL' (e.g., does it handle PDFs? dynamic pages?). For a simple tool, this might be sufficient, but more context would help.

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 has only one parameter 'url' with no description, and coverage is 0%. The description mentions 'article URL' but does not provide additional meaning about URL format or required encoding. Since there is only one parameter, the description adds some context but could be more explicit about acceptable URL formats or examples.

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 tool converts an article URL into a Word .docx file, using a specific verb and resource. It distinguishes this tool from siblings by the input being a URL and output being .docx, though it could be more explicit about the rendered page to clean document aspect.

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 implies usage (input a URL, get a docx), but provides no explicit when/when-not guidance or alternatives. It does not mention any constraints like only articles, or that it may not handle non-article webpages.

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

what_can_you_doFind the right tool for a taskA
Read-onlyIdempotent
Inspect

Describe a task in plain language (any language) and get back exactly which tools on this server do it, with ready-to-run example calls — instead of reading the whole catalogue and guessing. Also returns multi-step recipes when a task needs several tools chained (invoices to a ledger, a bank statement reconciled, a messy CSV turned into a deliverable). Deterministic and free: it calls no model, costs nothing, and never runs out of quota. Call this FIRST when you are not sure what this server offers.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYesWhat you are trying to do, e.g. "reconcile a bank statement against my books" or "把一堆发票整理成能入账的表格"

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds beyond that: determinism ('calls no model'), cost ('costs nothing'), and quota ('never runs out of quota'). These are valuable operational details not present in annotations.

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?

Four sentences, each serving a distinct purpose: core function, recipe capability, cost/determinism, and when to use. Information is front-loaded, with no redundant filler.

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?

Despite having an output schema (which removes the need to describe return values), the description still mentions that responses include matching tools, example calls, and multi-step recipes. It is complete for a simple one-parameter meta-tool.

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?

Schema coverage is 100% for the single 'task' parameter, with examples in the schema. The description adds the important nuance that the task can be in 'plain language (any language)', which clarifies the expected input format beyond the schema's examples.

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's function: accepting a plain-language task and returning matching tools with example calls and multi-step recipes. It distinguishes itself from sibling tools by being a meta-tool that routes to others rather than performing a specific operation.

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 provides explicit usage guidance: 'Call this FIRST when you are not sure what this server offers.' It also contrasts with the alternative of 'reading the whole catalogue and guessing,' though it does not name specific sibling tools as alternatives for particular cases.

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

xlsx_to_pdfxlsx to pdfCInspect

Excel .xlsx (by URL) → PDF.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo

TDQS

C2.9/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 of behavioral disclosure. It does not mention whether the operation is synchronous or asynchronous (despite the sibling check_job), any side effects, prerequisites, or failure modes. The only detail is the mapping from xlsx to PDF, which is insufficient.

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, concise arrow-notation sentence with no wasted words. It is front-loaded and immediately conveys the input/output transformation, earning a perfect score for efficiency.

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

Completeness1/5

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

Given the absence of annotations, output schema, and detailed parameter info, the description is severely incomplete. It does not explain what the tool returns, how long it might take, whether it supports asynchronous processing (as hinted by sibling check_job), or any constraints. For a tool that likely involves file conversion and potential URL access, this is inadequate.

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?

The schema has one parameter 'url' with no description, and schema coverage is 0%. The description mentions 'by URL' which clarifies the input is a URL, but it does not describe the expected format, whether other parameters are allowed (additionalProperties is true), or any optional settings. This adds only minimal meaning beyond the schema.

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 'Excel .xlsx (by URL) → PDF.' uses a specific verb (conversion) and resource (xlsx by URL) to clearly state the tool's function. It distinguishes from sibling tools like pptx_to_pdf and convert_to_pdf by naming the exact input and output formats.

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 provided on when to use this tool versus alternatives such as convert_to_pdf, which might also handle xlsx. The description implies a specific use case but does not mention exclusions or contexts, leaving the agent to guess.

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

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Deterministic verification for AI-generated analysis. Reconciliation, consistency and Excel-integrity checks that stop the line when the numbers don't add up.
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    MCP server for deterministic numeric verification and spreadsheet auditing. Enables AI agents to verify math/finance claims, audit rows, and evaluate covenant rules with signed, independently checkable receipts.
    4
    MIT
  • F
    license
    B
    quality
    B
    maintenance
    Enables AI assistants to perform financial reconciliation with a deterministic proof engine: intake files, match transactions, verify proofs, resolve exceptions, and sign off on balanced journals under the user's authority.
    21
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to verify claims deterministically by computing arithmetic, ratios, and dates and matching statements against provided sources, returning a confidence ladder of certain, source-backed, or unverifiable.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a unique operation—conversions, extractions, translations, and utilities like resume checking or redaction—with no meaningful overlap. The few similar tools (e.g., convert_to_pdf vs. xlsx_to_pdf) are clearly distinguished by input type.

Naming Consistency3/5

Naming mixes conventions: verb_noun (extract_tables, redact_text), noun_to_noun (xlsx_to_pdf, pptx_to_pdf), and unusual forms like doc_translate_cn and what_can_you_do. While snake_case is consistent, the verb/noun pattern is not, making the set slightly less predictable.

Tool Count3/5

With 23 tools, the server sits at the heavy end of the acceptable range. Every tool has a distinct purpose, but the spread across PDF handling, research, audio, and accounting utilities feels more like a miscellaneous collection than a focused suite, which could overwhelm agents.

Completeness4/5

The server covers a broad spectrum of document-processing tasks—conversion, extraction, translation, redaction, and validation—with few dead ends. Minor gaps exist (e.g., no PDF merge/split, no OCR for all scanned PDFs, no explicit delete/update for resources), but core workflows are well supported.