pricing
Check the current rates for using the MEOK FRIA Generator to understand usage fees.
Instructions
Pricing for MEOK FRIA Generator.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- meok_fria_generator/server.py:358-401 (handler)The pricing() function is the MCP tool handler decorated with @mcp.tool(). It returns pricing tiers (free, pro, enterprise, bespoke) as a dictionary with features, price, and contact/purchase links.
@mcp.tool() def pricing() -> dict[str, Any]: """Pricing for MEOK FRIA Generator.""" return { "free_tier": { "price": "£0", "features": [ "All FRIA generation tools", "Public attestation API (shared HMAC issuer)", "MIT-licensed source code", "EDPB DPIA crosswalk included", ], }, "pro": { "price": "£79/mo", "features": [ "Free tier + your own HMAC signing key", "Custom verify domain (your-firm.com/verify)", "Email support", "FRIA template versioning + diff tracking", ], }, "enterprise": { "price": "£1,499/mo", "features": [ "Pro tier + multi-deployment FRIA management for groups", "SLA on attestation API (99.9%)", "Direct slack/teams support channel", "Reseller white-label for compliance consultancies", ], "fit": "Public-sector deployers with multiple Annex III systems; consultancies " "running concurrent FRIA engagements", }, "bespoke": { "price": "from £5,000", "features": [ "Self-hosted attestation API on your infrastructure", "GRC stack integrations (Archer, ServiceNow, OneTrust)", "On-site FRIA workshop (1 day)", ], }, "purchase": "https://meok.ai/pricing", "contact": "nicholas@csoai.org", } - meok_fria_generator/server.py:358-358 (registration)The tool is registered via the @mcp.tool() decorator on line 358, which registers the pricing function with the FastMCP server instance (line 25: mcp = FastMCP("meok-fria-generator"))
@mcp.tool() - The return type is dict[str, Any] with no input parameters. The output schema is implicit in the returned dictionary structure with keys: free_tier, pro, enterprise, bespoke, purchase, contact.
return { "free_tier": { "price": "£0", "features": [ "All FRIA generation tools", "Public attestation API (shared HMAC issuer)", "MIT-licensed source code", "EDPB DPIA crosswalk included", ], }, "pro": { "price": "£79/mo", "features": [ "Free tier + your own HMAC signing key", "Custom verify domain (your-firm.com/verify)", "Email support", "FRIA template versioning + diff tracking", ], }, "enterprise": { "price": "£1,499/mo", "features": [ "Pro tier + multi-deployment FRIA management for groups", "SLA on attestation API (99.9%)", "Direct slack/teams support channel", "Reseller white-label for compliance consultancies", ], "fit": "Public-sector deployers with multiple Annex III systems; consultancies " "running concurrent FRIA engagements", }, "bespoke": { "price": "from £5,000", "features": [ "Self-hosted attestation API on your infrastructure", "GRC stack integrations (Archer, ServiceNow, OneTrust)", "On-site FRIA workshop (1 day)", ], }, "purchase": "https://meok.ai/pricing", "contact": "nicholas@csoai.org", }