Skip to main content
Glama

List subscriptions

swell_list_subscriptions
Read-only

List subscriptions, with filtering, sorting, and expansion. Swell backend REST API: GET /subscriptions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number for pagination (default 1).
sortNoSort expression, e.g. "date_created desc" or "name asc".
limitNoMax records to return (1–1000, Swell default 15).
whereNoMongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}.
expandNoComma-separated related fields to expand, e.g. "variants,categories".

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, signaling a safe read operation. The description adds the capability to filter, sort, and expand relations, and mentions the REST endpoint, but does not disclose behavioral traits like pagination limits, default values, or response structure beyond what the schema provides. This is acceptable but not rich additional 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 a single sentence with zero wasted words. It front-loads the core purpose ('List subscriptions') and includes only essential capability hints and the endpoint reference. Ideal conciseness.

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 tool is a straightforward list operation with a complete schema and a read-only annotation. The description mentions filtering, sorting, and expansion, which are the main behaviors an agent needs to know. No output schema exists, but the return value (a list of subscriptions) is implied. It is complete enough for agent invocation, though it could mention that the result is a paginated list.

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 schema fully explains all five parameters. The description's mention of 'filtering, sorting, and expansion' maps to the where, sort, and expand parameters, adding a small layer of context but not surpassing the schema's semantics. 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 'List subscriptions' with a specific verb and resource, and adds capability scope ('filtering, sorting, and expansion'). This clearly distinguishes it from sibling tools like get_subscription (single item) and other list_* tools for different resources.

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 the tool is used to list subscriptions, which is clear from the name and resource. It does not explicitly name alternatives (e.g., get_subscription for a single subscription), but the context of sibling tools provides implicit differentiation. No exclusions or when-not-to-use guidance is given, so it falls slightly short of explicit usage guidance.

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

Each tool targets a distinct resource and action: get_* for single entities, list_* for collections, and create/update for specific mutations. The generic query tool is explicitly scoped to uncovered models, preventing confusion.

Naming Consistency4/5

Most tools follow a consistent swell_verb_noun pattern (e.g., swell_get_product, swell_list_orders), but 'swell_query' deviates by being a verb-only name. This is a minor inconsistency in an otherwise predictable scheme.

Tool Count4/5

16 tools is slightly above the ideal 3-15 range, but the breadth of Swell's e-commerce domain (products, orders, customers, subscriptions, etc.) justifies the count. Each tool covers a meaningful resource or action.

Completeness2/5

The toolset provides comprehensive read operations (get/list) for most resources, but mutations are sparse: only create_product, update_product, and update_order exist. Missing create/delete for nearly all other resources, and no update for customers, subscriptions, invoices, etc., leaving significant gaps in lifecycle management.