Skip to main content
Glama

Server Details

Schedule and manage recurring or one-shot tasks

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: creating, checking status, viewing history, and canceling schedules. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (e.g., schedule_task, cancel_schedule).

Tool Count5/5

Four tools is well-scoped for a task scheduler, covering the essential operations of create, read, delete, and history without being excessive.

Completeness4/5

The set covers creation, status checking, history, and cancellation. Missing an update/modify tool, but core workflows are otherwise complete.

Available Tools

4 tools
cancel_scheduleAInspect

Cancel an active cron schedule to stop all future executions immediately.

ParametersJSON Schema
NameRequiredDescriptionDefault
agent_idNoAgent ID for ownership verification
schedule_idYesSchedule UUID to cancel
Behavior3/5

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

With no annotations, the description carries full burden. It discloses that cancellation stops future executions immediately, but lacks detail on reversibility, permissions, or what happens to pending executions.

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 concise sentence that is front-loaded with key information. Every word is necessary and no extraneous content.

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?

Given the simple action and two parameters, the description is mostly complete. It lacks mention of return values or error conditions, but for a basic cancel operation this is acceptable.

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 coverage is 100%, and both parameters have descriptions. The tool description adds minimal extra meaning beyond the schema, meeting the baseline but not exceeding it.

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 verb 'cancel', the resource 'active cron schedule', and the result 'stop all future executions immediately'. It effectively distinguishes from siblings like check_schedule, get_execution_history, and schedule_task.

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 use for active schedules. It does not explicitly state when not to use or provide alternatives, but given sibling names, the context is clear.

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

check_scheduleBInspect

Check the status of a cron schedule — is it active, when does it next run, how many times has it executed?

ParametersJSON Schema
NameRequiredDescriptionDefault
agent_idNoAlternatively list all schedules for this agent
schedule_idNoSchedule UUID from registration
Behavior2/5

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

With no annotations, the description must disclose all behavioral traits. While it states the return information, it does not clarify side effects (none expected as a 'check'), authorization needs, rate limits, or error conditions. This is insufficient for a tool with no annotations.

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, well-structured sentence that efficiently conveys the tool's purpose without extraneous wording.

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?

Given the simplicity of the tool and the absence of an output schema, the description covers the expected return values adequately. It lacks error handling details, but for a basic check operation this is acceptable.

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 description bears minimal responsibility. It adds no additional meaning beyond the schema's descriptions. The baseline of 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 clearly states the verb 'check', the resource 'cron schedule', and specifies three concrete pieces of information returned (active status, next run time, execution count). It effectively distinguishes from siblings like cancel_schedule or schedule_task.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as get_execution_history or cancel_schedule. It does not mention prerequisites, context, or exclusions.

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

get_execution_historyAInspect

View recent execution history for a schedule — status codes, response previews, and timing.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of executions to return (max 50)
schedule_idYesSchedule UUID
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It implies a read-only operation ('View') but does not disclose potential behaviors like error handling, rate limits, or authentication needs. The description could be more explicit about safety.

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?

Single sentence, front-loaded with the core verb and resource. No redundant information; every word adds value.

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?

Given the lack of an output schema, the description provides a reasonable summary of what the response contains (status codes, response previews, timing). For a simple retrieval tool with two parameters, this is mostly complete, though more detail on response structure would improve it.

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 coverage is 100% with descriptions for both parameters (schedule_id, limit). The description adds context by mentioning output content (status codes, response previews, timing) but does not add significant parameter-specific meaning 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 clearly states the tool's verb ('View'), resource ('execution history for a schedule'), and what it returns ('status codes, response previews, and timing'). It effectively distinguishes itself from sibling tools like cancel_schedule, check_schedule, and schedule_task.

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?

The description implies usage for viewing execution history but does not explicitly state when to use it versus alternatives or provide any exclusions. No guidance on prerequisites or context is given.

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

schedule_taskAInspect

Register a persistent cron schedule that runs even when your agent session ends. Specify a URL to call, how often, and for how long.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesHTTPS URL to call on each execution
bodyNoOptional JSON body for POST requests
methodNoHTTP method: GET or POST (default: GET)GET
agent_idYesYour agent identifier
duration_daysNoHow many days to keep running (max 30, default 7)
interval_minutesYesHow often to run (minimum 15 minutes)
Behavior4/5

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

No annotations are provided, so description carries full burden. It discloses key behavior: schedule runs after session ends, calls a URL, and lasts for a specified duration. However, it lacks details on error handling, limits, or deliverability guarantees.

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?

Two sentences, front-loaded with purpose and key differentiator, wastes no words. Each sentence adds value.

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?

Covers core purpose and key parameters. Lacks mention of return value (schedule ID) and error/validation constraints (e.g., min interval), but provides sufficient context for an agent to use the tool correctly.

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 coverage is 100%, so baseline is 3. Description adds meaning by mapping 'URL to call', 'how often', 'for how long' to url, interval_minutes, duration_days, but does not enrich other parameters beyond schema descriptions.

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?

Description clearly states the action ('Register a persistent cron schedule'), the resource (cron schedule), and distinguishes from siblings by emphasizing persistence beyond session end. It also specifies key elements: URL, interval, duration.

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?

Description implies when to use (need persistent scheduling) and highlights persistence ('even when your agent session ends'), but does not explicitly state when not to use or compare with siblings like cancel_schedule. Still provides clear context.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources