Skip to main content
Glama

MCP Scorecard: 86/100

Cron Ai MCP

MEOK AI Labs EU AI Act License PyPI

MEOK AI Labs MCP Server

MEOK AI Labs MCP Server


🚀 Quick Start

# Install via pip
pip install cron_ai_mcp

# Or install via Smithery
npx -y @smithery/cli@latest install cron-ai-mcp --client claude

Related MCP server: Data Science AI MCP

✨ Features

  • MCP protocol compliant

  • Easy installation

  • Well-documented API

  • Production-ready

  • Active maintenance

📖 Documentation

🛡️ Compliance

This MCP server is built with EU AI Act compliance built-in:

  • ✅ Article 9 — Risk Management System

  • ✅ Article 13 — Transparency & Instructions for Use

  • ✅ Article 15 — Bias Detection & Testing

  • ✅ Article 26 — FRIA Support (where applicable)

  • ✅ Article 50 — AI Content Watermarking (where applicable)

Need help getting compliant? Book a free 15-min diagnostic →

🏢 Enterprise

Need custom development, SLA guarantees, or white-label deployment?

  • Pro: $99/mo — Full MCP suite + EU AI Act tracking

  • Enterprise: $499/mo — Custom dev + SLA + Dedicated support

View Pricing → | Contact Sales →

🤝 Part of the MEOK Ecosystem

This server is part of the MEOK AI Labs ecosystem — 300+ MCP servers for sovereign AI governance.

Domain

Purpose

councilof.ai

EU AI Act compliance marketplace

safetyof.ai

AI safety & monitoring

meok.ai

Sovereign AI platform

cobolbridge.ai

Legacy modernization

📜 License

MIT © CSOAI-ORG



Pairs with MEOK Governance Suite

Build something that touches users? You need compliance. MEOK ships 38 governance MCPs that drop in alongside this tool — EU AI Act, DORA, NIS2, CRA, GDPR, ISO 42001, FDA SaMD, MDR, Basel, MiFID II, MiCA, COPPA, and more.

# One-shot install of the governance pack
npx meok-setup --pack governance

Free tier: 10 calls/day per MCP. Pro tier (£79/mo): unlimited + cryptographically signed compliance attestations your auditor verifies independently.

→ Full catalogue: councilof.ai/catalogue → MEOK AI Labs: meok.ai

💸 Try MEOK in 30 seconds — instant buy ladder

Tier

Price

What you get

Stripe

Smoke test

£1

Signed sample MCP-Hardening report + Article 50 PDF

https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t

Quick Kit

£9

EU AI Act Article 50 implementation guide (C2PA + EU-Icon)

https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t

Founder Call

£29

30-min 1-on-1 with the founder

https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t

Refundable. UK Stripe — VAT-clean. Builds on the 81-MCP MEOK fleet. Verify any signed report at https://meok.ai/verify.

Configuration

Add to your claude_desktop_config.json (Claude Desktop) or your MCP client config:

{
  "mcpServers": {
    "cron-ai-mcp": {
      "command": "uvx",
      "args": ["cron-ai-mcp"]
    }
  }
}

Or: pip install cron-ai-mcp then run the cron-ai-mcp command (stdio transport).

Examples

Once configured, ask your assistant, for example:

  • "Use parse_cron to …"

  • "Use generate_cron to …"

  • "Use next_runs to …"

Available Tools

4 tools
explain_cronA

Explain a cron expression in human-readable English.

Behavior: This tool is read-only and stateless — it produces analysis output without modifying any external systems, databases, or files. Safe to call repeatedly with identical inputs (idempotent). Free tier: 10/day rate limit. Pro tier: unlimited. No authentication required for basic usage.

When to use: Use this tool when you need structured analysis or classification of inputs against established frameworks or standards.

When NOT to use: Not suitable for real-time production decision-making without human review of results.

Args: expression (str): The expression to analyze or process. api_key (str): The api key to analyze or process.

Behavioral Transparency: - Side Effects: This tool is read-only and produces no side effects. It does not modify any external state, databases, or files. All output is computed in-memory and returned directly to the caller. - Authentication: No authentication required for basic usage. Pro/Enterprise tiers require a valid MEOK API key passed via the MEOK_API_KEY environment variable. - Rate Limits: Free tier: 10 calls/day. Pro tier: unlimited. Rate limit headers are included in responses (X-RateLimit-Remaining, X-RateLimit-Reset). - Error Handling: Returns structured error objects with 'error' key on failure. Never raises unhandled exceptions. Invalid inputs return descriptive validation errors. - Idempotency: Fully idempotent — calling with the same inputs always produces the same output. Safe to retry on timeout or transient failure. - Data Privacy: No input data is stored, logged, or transmitted to external services. All processing happens locally within the MCP server process.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNo
expressionYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the behavioral disclosure burden. It includes a comprehensive 'Behavioral Transparency' section covering side effects (read-only, stateless), authentication (no auth for basic usage), rate limits (10/day free), error handling (structured errors), idempotency (fully idempotent), and data privacy. This exceeds typical detail and aligns with the tool's safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (Behavior, When to use, Args, Behavioral Transparency), but it suffers from redundancy. The 'Behavior' section and the 'Behavioral Transparency' section repeat nearly identical information about read-only, stateless, idempotency, rate limits, and authentication. This could be streamlined without loss of meaning.

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 tool that explains cron expressions, the description provides extensive behavioral context but does not mention the output format. However, context signals indicate an output schema exists, so the agent can use that for structure. Given the tool's moderate complexity, the description is largely complete, though a brief note on output would strengthen it.

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?

Schema description coverage is 0%, so the description must compensate. However, the 'Args' section provides minimal and misleading information. 'expression' is described as 'The expression to analyze or process'—vague and failing to specify it's a cron expression. 'api_key' is described identically as 'to analyze or process', which is incorrect; its role is authentication. The description adds little semantic value beyond the parameter names.

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 purpose: 'Explain a cron expression in human-readable English.' This is a specific verb+resource combination. Sibling tools (generate_cron, next_runs, parse_cron) have distinct purposes, and the description implicitly differentiates by focusing on explanation rather than generation, prediction, or parsing.

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 includes 'When to use' and 'When NOT to use' sections, providing context on appropriate scenarios (structured analysis) and exclusions (not for real-time decisions without human review). However, it does not explicitly mention alternative sibling tools for specific cases, leaving the agent to infer distinctions from the tool name and purpose.

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

generate_cronB

Generate a cron expression. Use preset for common schedules: every_5min, every_hour, daily_midnight, weekly_monday, monthly_first, weekdays_9am.

Behavior: This tool generates structured output without modifying external systems. Output is deterministic for identical inputs. No side effects. Free tier: 10/day rate limit. Pro tier: unlimited. No authentication required for basic usage.

When to use: Use this tool when you need structured analysis or classification of inputs against established frameworks or standards.

When NOT to use: Not suitable for real-time production decision-making without human review of results.

Args: minute (str): The minute to analyze or process. hour (str): The hour to analyze or process. day_of_month (str): The day of month to analyze or process. month (str): The month to analyze or process. day_of_week (str): The day of week to analyze or process. preset (str): The preset to analyze or process. api_key (str): The api key to analyze or process.

Behavioral Transparency: - Side Effects: This tool is read-only and produces no side effects. It does not modify any external state, databases, or files. All output is computed in-memory and returned directly to the caller. - Authentication: No authentication required for basic usage. Pro/Enterprise tiers require a valid MEOK API key passed via the MEOK_API_KEY environment variable. - Rate Limits: Free tier: 10 calls/day. Pro tier: unlimited. Rate limit headers are included in responses (X-RateLimit-Remaining, X-RateLimit-Reset). - Error Handling: Returns structured error objects with 'error' key on failure. Never raises unhandled exceptions. Invalid inputs return descriptive validation errors. - Idempotency: Fully idempotent — calling with the same inputs always produces the same output. Safe to retry on timeout or transient failure. - Data Privacy: No input data is stored, logged, or transmitted to external services. All processing happens locally within the MCP server process.

ParametersJSON Schema
NameRequiredDescriptionDefault
hourNo*
monthNo*
minuteNo*
presetNo
api_keyNo
day_of_weekNo*
day_of_monthNo*

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.1/5.0
Behavior5/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 explicitly states that the tool is read-only, idempotent, has no side effects, requires no authentication for basic usage, has rate limits (10/day free, unlimited pro), returns descriptive error messages, and processes data locally without storing or logging input. This comprehensive disclosure fully informs the agent of behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is verbose and repetitive, with overlapping 'Behavior' and 'Behavioral Transparency' sections. The 'When to use' content is irrelevant to the tool's actual purpose. The 'Args' section is generic and wastes space. Critical info (e.g., parameter semantics) is absent while less relevant details (data privacy) are over-emphasized. The structure could be streamlined to front-load essential purpose and parameter guidance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers behavioral aspects like rate limits, authentication, and error handling, which are useful. However, it lacks crucial cron-specific context: it does not explain valid values for minute, hour, etc. (e.g., 0-59), how presets interact with individual fields, or what the output format is (a cron expression string). The output schema exists but its content is not described. Given the tool's simplicity, these gaps reduce completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description must compensate, but it fails. The 'Args' section lists parameters with generic descriptions like 'The minute to analyze or process.' which are unhelpful for cron generation. No valid values, formats, or interactions (e.g., preset versus individual fields) are explained. The schema itself has no descriptions, and the description adds no meaning.

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 name 'generate_cron' and the opening sentence 'Generate a cron expression.' clearly state the tool's purpose. However, the description lacks explicit differentiation from sibling tools (explain_cron, parse_cron, next_runs), and the generic 'Args' section introduces confusion by describing parameters as 'analyze or process' rather than specifying cron field values.

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 includes separate 'When to use' and 'When NOT to use' sections, but their content is generic and misleading. For example, 'Use this tool when you need structured analysis or classification of inputs against established frameworks or standards' does not relate to generating cron expressions. The warning against real-time production decision-making is irrelevant. No guidance is provided on when to use generate_cron versus siblings or how presets interact with individual fields.

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

next_runsA

Calculate next N run times for a cron expression.

Behavior: This tool is read-only and stateless — it produces analysis output without modifying any external systems, databases, or files. Safe to call repeatedly with identical inputs (idempotent). Free tier: 10/day rate limit. Pro tier: unlimited. No authentication required for basic usage.

When to use: Use this tool when you need structured analysis or classification of inputs against established frameworks or standards.

When NOT to use: Not suitable for real-time production decision-making without human review of results.

Args: expression (str): The expression to analyze or process. count (int): The count to analyze or process. from_date (str): The from date to analyze or process. api_key (str): The api key to analyze or process.

Behavioral Transparency: - Side Effects: This tool is read-only and produces no side effects. It does not modify any external state, databases, or files. All output is computed in-memory and returned directly to the caller. - Authentication: No authentication required for basic usage. Pro/Enterprise tiers require a valid MEOK API key passed via the MEOK_API_KEY environment variable. - Rate Limits: Free tier: 10 calls/day. Pro tier: unlimited. Rate limit headers are included in responses (X-RateLimit-Remaining, X-RateLimit-Reset). - Error Handling: Returns structured error objects with 'error' key on failure. Never raises unhandled exceptions. Invalid inputs return descriptive validation errors. - Idempotency: Fully idempotent — calling with the same inputs always produces the same output. Safe to retry on timeout or transient failure. - Data Privacy: No input data is stored, logged, or transmitted to external services. All processing happens locally within the MCP server process.

ParametersJSON Schema
NameRequiredDescriptionDefault
countNo
api_keyNo
from_dateNo
expressionYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior5/5

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

Since no annotations are provided, the description carries the full burden. It thoroughly covers side effects (read-only, stateless), authentication, rate limits (free/pro), error handling, idempotency, and data privacy. This exceeds expectations 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.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with headings (Behavior, When to use, etc.) and contains necessary behavioral details. However, it is verbose with redundancy; for example, 'Behavior' and 'Behavioral Transparency' sections overlap on read-only and idempotency points. Could be more concise without losing information.

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 has an output schema, so return values are not needed. The description covers usage context, behavioral traits, and guidelines. The only gap is poor parameter semantics, which is scored separately. Given the complexity of cron calculations and the presence of sibling tools, the description is largely complete except for parameter clarity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The 'Args' section repeats parameter names with generic phrases like 'The expression to analyze or process' or 'The count to analyze or process,' adding no meaningful context. For a tool that calculates next cron runs, the description should clarify that 'expression' is a cron expression, 'count' is the number of runs, and 'from_date' is the starting date. Schema coverage is 0%, so the description needed to compensate but failed.

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 'Calculate next N run times for a cron expression,' which is a specific verb and resource. It distinguishes from siblings (explain_cron, generate_cron, parse_cron) by focusing on calculating future runs rather than explaining, generating, or parsing cron expressions.

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?

Explicit 'When to use' and 'When NOT to use' sections provide guidance, suggesting it for structured analysis and warning against real-time production use without human review. However, it lacks direct comparison to sibling tools, which would clarify when to choose this over explain_cron, generate_cron, or parse_cron.

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

parse_cronA

Parse a cron expression into its components with validation.

Behavior: This tool is read-only and stateless — it produces analysis output without modifying any external systems, databases, or files. Safe to call repeatedly with identical inputs (idempotent). Free tier: 10/day rate limit. Pro tier: unlimited. No authentication required for basic usage.

When to use: Use this tool when you need structured analysis or classification of inputs against established frameworks or standards.

When NOT to use: Not suitable for real-time production decision-making without human review of results.

Args: expression (str): The expression to analyze or process. api_key (str): The api key to analyze or process.

Behavioral Transparency: - Side Effects: This tool is read-only and produces no side effects. It does not modify any external state, databases, or files. All output is computed in-memory and returned directly to the caller. - Authentication: No authentication required for basic usage. Pro/Enterprise tiers require a valid MEOK API key passed via the MEOK_API_KEY environment variable. - Rate Limits: Free tier: 10 calls/day. Pro tier: unlimited. Rate limit headers are included in responses (X-RateLimit-Remaining, X-RateLimit-Reset). - Error Handling: Returns structured error objects with 'error' key on failure. Never raises unhandled exceptions. Invalid inputs return descriptive validation errors. - Idempotency: Fully idempotent — calling with the same inputs always produces the same output. Safe to retry on timeout or transient failure. - Data Privacy: No input data is stored, logged, or transmitted to external services. All processing happens locally within the MCP server process.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNo
expressionYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior5/5

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

With no annotations, the description carries full burden and excels: it explicitly states read-only, stateless, idempotent, rate limits, authentication requirements, error handling, and data privacy. This is comprehensive and actionable.

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 well-structured with clear headings, but has redundancy (e.g., 'Behavior' and 'Behavioral Transparency' overlap). Could be more concise without losing key information.

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 behavioral aspects thoroughly. An output schema exists, so return values need not be explained. However, missing specifics like what components are parsed (e.g., minute, hour, etc.) and example usage, which would be helpful for a parse tool.

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?

Schema coverage is 0%, but the description's 'Args' section merely repeats names and types without adding meaning. For example, 'expression (str): The expression to analyze or process' does not specify it must be a cron expression; 'api_key (str): The api key to analyze or process' is misleading (it's for authentication, not analysis). No examples or format hints are provided.

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 it parses cron expressions into components with validation. This distinguishes it from siblings (explain, generate, next_runs) which have different verbs.

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 'When to use' section is generic ('structured analysis or classification') and does not explicitly compare to sibling tools like explain_cron or next_runs. The 'When NOT to use' warns against real-time decision-making but lacks alternative recommendations.

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

TDQS

A3.9/5.0
Disambiguation5/5

Each tool has a distinct purpose: explain, generate, parse, and compute next runs for cron expressions. No overlap or ambiguity.

Naming Consistency4/5

Three tools follow the verb_noun pattern (explain_cron, generate_cron, parse_cron), while next_runs is a noun phrase, which is a minor inconsistency.

Tool Count5/5

Four tools are appropriate for a focused cron utility, covering the essential operations without being too many or too few.

Completeness5/5

The set covers cron-related tasks: explanation, generation, parsing with validation, and computing next run times. No obvious gaps.

Maintenance

ActivityStale
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CSOAI-ORG/cron-ai-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server