Skip to main content
Glama

excalibur_scheduler_check_now

Ask the scheduler to run one tick now (free; any proven patron).

Pokes the Worker's /tick — the same work the ~30-minute cron does: it claims a pending proof reply (completing the operator's authorization) and fires any due posts. Use it right after the operator approves in Studio so nobody waits for the next tick.

Deliberately NOT operator-only. Approving is the operator's act; noticing that they approved is anyone's, and a patron watching a parked scheduler is often the one who notices first. The poke carries no authority — it cannot approve anything, only ask the Worker to look. The challenge phrase stays operator-gated (scheduler_pending).

The Worker runs the tick in the background and returns immediately; re-read scheduler_status a few seconds later to see the phase flip. Returns {started: true} or {started: false} if the Worker couldn't be reached.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
npubNoYour npub (npub1...).
dpop_tokenNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior5/5

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

There are no annotations, so the description carries the full burden, and it delivers thoroughly. It states side effects (claims pending proof reply, fires due posts), the asynchronous background execution, immediate return behavior, and the exact return payload. It also explicitly cautions that the poke carries no authority and that the challenge phrase remains operator-gated, preventing a common misunderstood privilege.

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 fully front-loaded with the decisive clause and then expand with important context. It uses clear paragraph breaks for visibility. Every sentence adds something meaningful, though it is slightly long for a simple trigger action. Still, the length is justified by the nuanced authorization semantics.

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 simple trigger tool with no annotations, the description fully covers identity/authorization context, when to call it, side effects, asynchronous behavior, output, and follow-up guidance. It also clarifies how this differs from cron and operator-only actions. The agent has everything needed to invoke and interpret the result correctly.

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?

Only npub has a schema description, and the tool description adds no guidance for the dpop_token. With 2 params and 50% schema coverage, the description fails to explain the auth token's purpose or how an agent should obtain or supply it. Even though npub is briefly described in the schema, the overall parameter guidance is insufficient.

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 precise, specific statement: 'Ask the scheduler to run one tick now,' and then details the exact action (poking /tick and performing due work). It distinguishes the tool from nearby scheduler tools by clarifying it only triggers a tick and cannot approve anything. This goes well beyond restating the tool name.

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 gives strong situational guidance: use it right after the operator approves in Studio, or when a patron notices a pending authorization while the scheduler is parked. It also explains who can use it ('deliberately NOT operator-only'), but it does not enumerate explicit alternatives or a 'when not to use' section. This is clear context with no exclusions, but slightly below the 5 bar.

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.