MantleKit
DocsMCP ToolsReference

MantleKit MCP Docs

Reference docs for the current MantleKit MCP surface. These docs cover the live tools, resources, prompts, and the structured response shapes they return.

For the canonical entity page, see MantleKit MCP.

Resources
Structured context available to clients

mantlekit://tiers

mantlekit://themes

mantlekit://features

mantlekit://install-flow

Prompts
Guided prompt templates

plan-saas-with-mantlekit

choose-mantlekit-theme

What The Service Covers
Current live surface, without roadmap inflation

Deterministic SaaS setup recommendation

Blueprint generation for MantleKit projects

Theme matching against the MantleKit theme catalog

Build-vs-custom scoping guidance

The service is deterministic and catalog-driven rather than LLM-generated.

It recommends against MantleKit's current tiers, themes, resources, and prompts only.

It returns planning outputs and comparison guidance, not repository creation or code generation.

Public remote deployment is a separate rollout step from the local service and docs surface.

recommend_setup
Recommend the best MantleKit tier, theme, feature set, and setup path for a product idea.

Example input

{
  "appIdea": "AI invoicing SaaS for tradies",
  "businessType": "B2B SaaS",
  "targetAudience": "tradies and service businesses",
  "needsAuth": true,
  "needsPayments": true,
  "needsAdmin": true
}

Example output

{
  "recommendedTier": "pro",
  "recommendedTheme": "SaaS",
  "recommendedFeatures": ["Themes", "Install CLI", "Auth", "Payments", "Admin Dashboard"]
}
generate_project_blueprint
Expand an idea into a blueprint with pages, dashboard modules, entities, MVP scope, and launch steps.

Example input

{
  "appName": "Locksmith Ops",
  "oneLineIdea": "A SaaS for locksmiths to manage jobs, invoices, and customer notes.",
  "coreFeatures": ["Jobs", "Invoices", "Customer Notes"],
  "authRequired": true,
  "paymentsRequired": true,
  "adminNeeds": true
}

Example output

{
  "recommendedTier": "pro",
  "suggestedPages": ["Home", "Pricing", "Login", "Signup", "Dashboard", "Checkout"],
  "suggestedDatabaseEntities": ["users", "profiles", "subscriptions", "plans", "orders", "jobs"]
}
match_theme
Choose the strongest MantleKit theme for a product type, audience, and visual direction.

Example input

{
  "appType": "B2B SaaS analytics platform",
  "audience": "operations teams",
  "brandAdjectives": ["professional", "clean", "modern"]
}

Example output

{
  "recommendedTheme": "SaaS",
  "alternatives": [
    { "theme": "Corporate" },
    { "theme": "Minimal" }
  ]
}
compare_build_vs_custom
Estimate how much MantleKit covers compared with building a similar SaaS foundation from scratch.

Example input

{
  "appIdea": "Agency SaaS with auth, billing, tickets, and admin reporting",
  "teamSize": 1,
  "timelineWeeks": 4,
  "experienceLevel": "solo_indie",
  "needsAuth": true,
  "needsPayments": true,
  "needsAdmin": true,
  "needsSupportTickets": true
}

Example output

{
  "recommendedTier": "agency",
  "fitAssessment": "strong",
  "roughTimeSaved": "4-8 weeks"
}
Current Limits
Important boundaries for tool consumers

The service is deterministic and catalog-driven rather than LLM-generated.

It recommends against MantleKit's current tiers, themes, resources, and prompts only.

It returns planning outputs and comparison guidance, not repository creation or code generation.

Public remote deployment is a separate rollout step from the local service and docs surface.

Next Read
Keep the discovery flow tight

Start with MantleKit MCP for the canonical entity definition.

Broader discovery intent lives on AI SaaS Builder.

Blueprint-first intent lives on SaaS Blueprint Generator.