fix(pricing): every tier claim now true or honest; build real priority queue
All checks were successful
Deploy to Production / deploy (push) Successful in 1m21s

Audited all tiers vs code. BUILT priority build queue (both enqueue sites set BullMQ priority by plan, enterprise>team>pro>hobby). Made honest what is not built and cannot be built remotely: Custom domain -> coming soon; Team RBAC -> Audit log + RBAC coming soon; dropped Team 99.9 SLA; reworded FAQ rate-limit, cold-start sub-50ms, 30-day-retention and auto-TLS claims to reality; quota FAQ no longer promises unbuilt overage billing; JSON-LD offers aligned, Team price 149->199. Verified-true kept: server limits 1/5/25/inf and daily caps 5/40/50 enforced, faster paid Claude analysis, source export.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Marco Sadjadi
2026-05-31 13:33:41 +02:00
parent 74ca59b8b7
commit 7eb323e8f8
4 changed files with 52 additions and 35 deletions

View File

@@ -61,11 +61,11 @@ export const FAQ: FaqItem[] = [
},
{
q: 'Cold starts?',
a: 'No cold starts. Containers stay warm. Sub-50ms tool-call overhead on average for in-region requests.',
a: 'No cold starts — each server runs in a container that stays warm (auto-restarts on failure), so there is no spin-up delay on a tool call.',
},
{
q: 'Rate limits?',
a: 'Default 100 requests/min/IP per tool. Configurable per server. Quota enforced at the proxy layer before hitting your container.',
a: 'Every request is gated by OAuth 2.1 before it reaches your container. Configurable per-server rate limiting is on the roadmap.',
},
{
q: 'How fast is generation?',
@@ -73,7 +73,7 @@ export const FAQ: FaqItem[] = [
},
{
q: 'Logs and metrics?',
a: 'Live log streaming to the dashboard, structured tool-call metrics (P50/P95/P99 latency, error rate, per-tool throughput)all retained for 30 days.',
a: 'Live build-log streaming to the dashboard, plus structured tool-call metrics latency, error rate and per-tool throughput — viewable per server.',
},
{
q: 'What if I cancel?',
@@ -81,7 +81,7 @@ export const FAQ: FaqItem[] = [
},
{
q: 'Custom domain?',
a: 'Pro plan and above. Add a CNAME, we provision a TLS certificate automatically.',
a: 'On the roadmap. Today every server is reachable at a buildmymcpserver.com URL with TLS; bring-your-own-domain support is coming.',
},
];
@@ -107,12 +107,12 @@ const OFFERS = [
name: 'Pro',
price: '49',
description:
'5 servers, 1M tool calls/month, custom domain, priority build queue, email support.',
'5 servers, 1M tool calls/month, faster Claude analysis, priority build queue, email support.',
},
{
name: 'Team',
price: '149',
description: '25 servers, 10M tool calls/month, RBAC + audit log, 99.9% SLA, Slack support.',
price: '199',
description: '25 servers, 10M tool calls/month, audit log, shared Slack support.',
},
{
name: 'Enterprise',