Skip to main content
Glama

excalibur_list_posts

List your stored posts, server-side sorted, filtered, and offset-paginated.

Optional status filter — a single status or a comma-separated set (e.g. draft,scheduled), matched as set membership. sort_col is one of created|updated|status|scheduled (default created); sort_dir is asc|desc. search is a case-insensitive regular expression matched against the post text. date_from/date_to accept bare YYYY-MM-DD (UTC-calendar day, end-inclusive) or an ISO instant (patron-local midnight from the FE — exclusive upper bound when instant). Bound the date_field column, one of created|updated|scheduled|sent (default created). template_id filters to the sent occurrences a recurring template fired. sent_hour (0–23) with time_zone (IANA) keeps only posts whose last_sent_at local wall hour in that zone matches — used by the Performance time-of-day chart deep-link. page is 0-indexed; page_size is 1..100. Each row carries is_recurring, has_dynamic, and template_id (set on sent occurrences). Returns {posts:[…], total, page, page_size} reflecting the filtered set.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
npubNoRequired. Your Nostr public key (npub1...) for credit billing.
pageNo
searchNo
statusNo
date_toNo
sort_colNocreated
sort_dirNodesc
date_fromNo
page_sizeNo
sent_hourNo
time_zoneNo
date_fieldNocreated
dpop_tokenNo
template_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.2/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 — and it excels. It discloses precise edge-case semantics: UTC-calendar day is end-inclusive while ISO instants impose an exclusive upper bound, status is set-membership matched, sent_hour matches local wall-hour in a timezone, and page is 0-indexed. It also reveals the filter-reflected total behavior in the return contract — substantive behavioral detail far beyond what structured fields could convey.

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 an excellent one-sentence summary before diving into parameter details, and every sentence earns its place given the tool's complexity. However, the body is a dense wall-of-text with minor grammatical slips ('Bound the date_field column' should be 'Bounds...'), and the sent_hour sentence crams three clauses into one long construction.

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 14-parameter tool with zero annotations and minimal schema help, the description is remarkably complete: it covers defaults, allowed values, edge cases, timezone behavior, and result shape across all meaningful dimensions. The output schema existing means the return value explanation is unnecessary. Minor deduction for the unaddressed dpop_token parameter and silence on pagination edge cases (e.g., behavior past the last page).

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?

With schema coverage at a paltry 7% (only npub documented), the description carries the entire semantic burden and succeeds admirably. It explains 12 of 14 parameters with exact allowed values (created|updated|status|scheduled), defaults, validation constraints (page_size 1..100, sent_hour 0-23), date-format disambiguation (bare YYYY-MM-DD vs ISO instant), and matching rules (regex, set membership, wall-hour equality). Only dpop_token is left undocumented in both schema and prose.

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 opening sentence — 'List your stored posts, server-side sorted, filtered, and offset-paginated' — uses a specific verb+resource and clearly scopes the tool to user posts with rich server-side processing. It implicitly distinguishes itself from sibling list tools (list_coupons, list_snippets, list_notarizations) by resource type, though it never explicitly names alternatives or contrasts itself the way the get_calls example does.

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?

There is no explicit when-to-use or when-not-to-use guidance, and no alternative tools are named (e.g., nothing like 'for a single post, use get_post'). However, the extensive parameter semantics strongly imply the tool's use cases (time-of-day deep-links, template filtering, date-range queries), giving clear contextual usage context without ever stating exclusions or alternatives.

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.