Skip to main content
Glama

excalibur_list_snippets

List your saved post snippets, server-side sorted, filtered, and offset-paginated. sort_col is one of favorite|created|updated|name (default favorite); sort_dir is asc|desc. search is a case-insensitive regular expression matched against the snippet name or body. date_from/date_to accept bare YYYY-MM-DD (UTC-calendar day, end-inclusive) or an ISO instant (patron-local midnight from the FE). Bound the date_field column, one of created|updated (default created). page is 0-indexed; page_size is 1..200. Free, owner-scoped. Returns {snippets:[…], total, page, page_size} reflecting the filtered set.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
npubNoRequired. Your Nostr public key (npub1...).
pageNo
searchNo
date_toNo
sort_colNofavorite
sort_dirNodesc
date_fromNo
page_sizeNo
date_fieldNocreated
dpop_tokenNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden. It thoroughly discloses behavior: server-side sorting/filtering, sort column and direction options, case-insensitive regex search, date parsing rules (including end-inclusive behavior), date field binding, pagination specifics (0-indexed page, page_size range), and the return shape. It also notes 'Free, owner-scoped,' which is useful context.

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 front-loaded with its primary purpose and contains dense, relevant information. However, it is a single lengthy paragraph that could benefit from bullet points or section breaks for readability. Every sentence earns its place, but the structure is slightly overwhelming.

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 there are no annotations, low schema coverage (10%), and an output schema that is not shown, the description provides a complete picture for a list operation. It covers all parameters, return shape, filtering semantics, pagination, and scope, making it quite complete for the task.

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 only 10% (only npub has an inline description). The description compensates fully by explaining every meaningful parameter: sort_col, sort_dir, search, date_from/date_to, date_field, page, page_size, and even mentions dpop_token indirectly as part of the auth context. It provides valid values, defaults, and semantic details like case-insensitivity and date formats.

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: 'List your saved post snippets, server-side sorted, filtered, and offset-paginated.' It uses a specific verb and resource, and the context of listing snippets clearly distinguishes it from sibling tools like excalibur_get_snippet, excalibur_save_snippet, and excalibur_delete_snippet.

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 listing, searching, and paginating through saved post snippets—and adds scope details ('owner-scoped'). However, it does not explicitly name alternative tools or say when not to use it, so it lacks explicit exclusion 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.6/5.0
Disambiguation5/5

Each tool targets a distinct operation and domain (account, posts, coupons, credentials, scheduling, oracle, etc.), with clear differentiation even for similar-sounding tools like check_balance vs check_authority_balance or list_coupons vs list_my_coupons. There is no ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (e.g., create_post, delete_coupon, list_posts), with no mixing of styles. The excalibur_ prefix is uniform.

Tool Count1/5

With 72 tools, the server far exceeds the typical well-scoped range (3–15). While the functionality is broad, the sheer number feels excessive for a single MCP server, leading to an extreme mismatch.

Completeness5/5

The tool surface covers the full lifecycle for core domains: CRUD for posts, snippets, coupons, credentials; complete flows for OAuth, npub proof, scheduling, notarization, and payments. No obvious gaps are present.