Skip to main content
Glama

List records

fawtar_list
Read-only

List records from any Fawtar resource, with filtering, sorting and paging.

Resources:

  • invoices: إصدار الفواتير الضريبية وقراءتها.

  • credit_notes: تصحيح فاتورة صادرة بالخصم.

  • debit_notes: تصحيح فاتورة صادرة بالزيادة.

  • quotes: عروض الأسعار قبل تحوّلها إلى فواتير.

  • orders: طلبات المتجر قبل الفوترة.

  • customers: بيانات العملاء وأرقامهم الضريبية والعنوان الوطني.

  • products: المنتجات والخدمات وأسعارها.

  • categories: تصنيفات المنتجات.

  • product_unit_types: وحدات بيع المنتجات.

  • vendors: بيانات الموردين.

  • bills: فواتير الموردين ببنودها.

  • simple_bills: مصروف بمبلغ واحد دون بنود.

  • bill_payments: سداد فواتير الموردين.

  • inventories: المستودعات والفروع.

  • inventory_levels: الكميات المتاحة لكل منتج في كل مستودع.

  • inventory_adjustments: زيادة أو إنقاص كمية بسبب جرد أو تلف.

  • inventory_transfers: نقل كمية بين مستودعين.

  • invoice_payments: تسجيل دفعة على فاتورة.

  • receipts: الدفعات نفسها بصيغة سند القبض.

  • accounts: شجرة الحسابات وأنواعها.

  • journal_entries: القيود المرحّلة إلى دفتر الأستاذ.

  • recurring_journals: جدولة القيود التي تتكرر كل فترة.

  • employees: بيانات الموظفين ورواتبهم وبدلاتهم.

  • payroll_runs: المسيّرات الشهرية وإجمالياتها.

  • payslips: قسيمة كل موظف داخل المسيّر.

  • assets: سجل الأصول وإهلاكها.

  • pos_tables: طاولات صالة المطعم.

  • pos_orders: طلبات نقاط البيع المفتوحة والمحصّلة.

Filters use the form {"field_predicate": "value"} — for example {"status_eq": "issued"} or {"issued_at_gteq": "2026-01-01"}. Predicates: eq, not_eq, cont, start, end, gt, gteq, lt, lteq, in, null. Only fields the resource allows are honoured; anything else is ignored.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
sortNoSort as "field asc" or "field desc".
limitNo
filtersNoRansack-style filters, e.g. {"status_eq":"issued"}.
resourceYesWhich resource to list.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark it readOnly and non-destructive, and the description adds meaningful behavior: filter syntax, supported predicates, and the explicit warning that unsupported field predicates are silently ignored. It does not overclaim or contradict the read-only hint.

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 long resource list is justified because all 27 enum values need disambiguation, and the bullet format is scannable. The filter rules are front-loaded before the catalog, and there is no obvious filler, though it is still a sizable wall of text.

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 5-parameter tool with no output schema, the description covers resource selection, filter predicates, sorting, paging, and ignored-field behavior. Minor gaps remain around response shape and pagination metadata, but the required invocation details are present.

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 60%: sort, filters, and resource have descriptions, while page and limit only have schema constraints. The description compensates with a predicate list, filter example, and per-resource meaning for the enum, adding real selection value 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 leads with a specific verb and resource scope: "List records from any Fawtar resource", then enumerates 27 supported resources with short definitions. This clearly separates it from siblings like fawtar_create and fawtar_get even before inspecting the schema.

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 opening sentence gives clear context: use this when you need to list records with filtering, sorting, and paging rather than creating or fetching a single record. It does not explicitly name alternatives or state when not to use it, so it stops short of 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

fawtar_create and fawtar_create_invoice are clearly separated by the explicit warning that invoices need the specialized tool, and get/list/outstanding/vat_summary each have distinct read/report purposes. The only mild ambiguity is fawtar_outstanding overlapping fawtar_list with filters, but descriptions make the specialized intent obvious.

Naming Consistency3/5

All tools share the fawtar_ prefix and snake_case, but the action suffix is inconsistent: create/get/list are generic verbs, create_invoice combines verb+noun, and outstanding/vat_summary are noun-phrase report names rather than verb_noun commands.

Tool Count5/5

Six tools is a compact, well-scoped set for a broad API: three generic CRUD-ish verbs and three specialized financial actions (invoice creation, outstanding report, VAT summary). Each tool has a distinct role and the count feels intentional.

Completeness2/5

The surface covers creation, retrieval, listing, and key financial reports, but there are no update/delete tools for editable master data and no way to create credit notes or debit notes even though the invoice tool explicitly directs corrections to credit notes. These are significant gaps that will make common workflows fail.

Resources