pricing
Obtain the cost details for the MEOK DORA TLPT Planner to manage your budget.
Instructions
Pricing for MEOK DORA TLPT Planner.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- meok_dora_tlpt_planner/server.py:364-404 (handler)The `pricing` MCP tool handler function. Returns a dictionary with pricing tiers (free, pro, enterprise, bespoke) and contact/purchase info.
@mcp.tool() def pricing() -> dict[str, Any]: """Pricing for MEOK DORA TLPT Planner.""" return { "free_tier": { "price": "£0", "features": [ "All scope/TTI/remediation tools above", "Public attestation API (shared HMAC issuer)", "MIT-licensed source code", ], }, "pro": { "price": "£79/mo", "features": [ "Free tier + your own HMAC signing key", "Custom attestation domain (your-firm.com/verify)", "Email support", ], }, "enterprise": { "price": "£1,499/mo", "features": [ "Pro tier + multi-BU separation for group-level TLPT coordination", "SLA on attestation API (99.9%)", "Direct slack/teams support channel", "White-label for resellers (consultancies)", ], "fit": "Significant/systemic financial entities with concurrent TLPT engagements across BUs", }, "bespoke": { "price": "from £5,000", "features": [ "Self-hosted attestation API on your infrastructure", "Custom integrations with GRC stack (Archer, ServiceNow, etc.)", "On-site white-team training (2 days)", ], }, "purchase": "https://meok.ai/pricing", "contact": "nicholas@csoai.org", } - meok_dora_tlpt_planner/server.py:364-364 (registration)The `@mcp.tool()` decorator registers `pricing` as an MCP tool via the FastMCP instance.
@mcp.tool()