import { pageMetadata } from '@/lib/seo'; import Link from 'next/link'; export const metadata = pageMetadata({ title: 'Pricing', description: 'BuildMyMCPServer pricing — start free with one hosted MCP server, scale to Pro, Team and Enterprise. Pay for tool calls, not boilerplate.', path: '/pricing', }); const TIERS = [ { name: 'Hobby', price: '€0', tag: 'Forever free', description: 'For trying things out and shipping single-user tools.', model: 'Open-tier AI', modelDetail: 'Free-tier model · ~30-60s analyze', features: [ '1 MCP server', '100,000 tool calls / month', '5 prompt analyses / day', 'BuildMyMCP subdomain', 'Community support', ], cta: 'Start free', href: '/login', }, { name: 'Pro', price: '€49', tag: '/ month', description: 'For solo founders and small teams shipping production tools.', model: 'Claude Haiku 4.5', modelDetail: 'Anthropic · ~10-20s analyze', features: [ '5 MCP servers', '1M tool calls / month', '40 prompt analyses / day', 'Custom domain', 'Priority build queue', 'Email support, 1 business-day SLA', ], cta: 'Start Pro', href: '/login', highlight: true, }, { name: 'Team', price: '€199', tag: '/ month', description: 'For teams with RBAC, audit, and 99.9% SLA needs.', model: 'Claude Sonnet 4.6', modelDetail: "Anthropic's flagship", features: [ '25 MCP servers', '10M tool calls / month', '150 prompt analyses / day', 'RBAC + extended audit log', '99.9% uptime SLA', 'Shared Slack channel support', ], cta: 'Start Team', href: '/login', }, { name: 'Enterprise', price: '€999+', tag: '/ month', description: 'For organizations bringing their own cloud, SSO and dedicated infra.', model: 'Sonnet + Opus on build', modelDetail: 'EU data-residency option', features: [ 'Unlimited servers', 'BYOC (AWS, GCP, Azure, Hetzner)', 'SSO / SAML', 'Dedicated cluster', 'Customer success manager', ], cta: 'Contact sales', href: 'mailto:sales@buildmymcpserver.com', }, ]; const FAQ = [ { q: 'What counts as a tool call?', a: 'Every successful invocation of a tool exposed by your MCP server. Failed calls do not count.', }, { q: 'What happens if I exceed my quota?', a: 'Hobby: 429 with a hint to upgrade. Pro/Team: overage at €0.02 per 1000 calls, billed the following month. Soft caps configurable.', }, { q: 'Annual billing?', a: 'Yes — save 20% on Pro and Team paying annually. Enterprise is annual by default.', }, { q: 'Plan changes?', a: 'Upgrade any time, pro-rated. Downgrade at end of billing period.', }, ]; export default function Pricing() { return (
Pricing

Pay for tool calls, not boilerplate.

Build infinite servers, pay for the traffic they actually serve. Cancel any time, export everything, no lock-in.

{TIERS.map((t) => (
{t.name}
{t.price} {t.tag}

{t.description}

AI model
{t.model}
{t.modelDetail}
    {t.features.map((f) => (
  • — {f}
  • ))}
{t.cta}
))}

Pricing FAQ

{FAQ.map((f) => (

{f.q}

{f.a}

))}
); }