0nmcp 4.5.1 → 4.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -13,6 +13,7 @@ Connect any AI to any API. Natural language. Zero configuration.<br>
13
13
  [![npm downloads](https://img.shields.io/npm/dm/0nmcp.svg?style=flat-square)](https://www.npmjs.com/package/0nmcp)
14
14
  [![License: BSL 1.1](https://img.shields.io/badge/License-BSL%201.1-blue.svg?style=flat-square)](./LICENSE)
15
15
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen?style=flat-square)](https://nodejs.org)
16
+ [![Spectra Assure Community Badge](https://secure.software/npm/badge/0nmcp)](https://secure.software/npm/packages/0nmcp)
16
17
  [![MCP](https://img.shields.io/badge/MCP-Compatible-blueviolet?style=flat-square)](https://modelcontextprotocol.io)
17
18
  [![Tools](https://img.shields.io/badge/tools-14500%2B-orange?style=flat-square)](#tool-count-breakdown)
18
19
  [![Services](https://img.shields.io/badge/services-867-blue?style=flat-square)](#all-96-services)
package/catalog.js CHANGED
@@ -3504,6 +3504,245 @@ export const SERVICE_CATALOG = {
3504
3504
  authHeader: (creds) => ({ "Authorization": `Bearer ${creds.apiKey}`, "Content-Type": "application/json" }),
3505
3505
  },
3506
3506
 
3507
+ // ── shadcn/ui registry ─────────────────────────────────────
3508
+ shadcn: {
3509
+ name: "shadcn/ui",
3510
+ type: "design-system",
3511
+ description: "shadcn/ui component registry — search, recommend, and install official primitives + curated blocks. The default UI system across the 0n ecosystem.",
3512
+ baseUrl: "https://ui.shadcn.com",
3513
+ authType: "none",
3514
+ credentialKeys: [],
3515
+ capabilities: [
3516
+ { name: "list_components", actions: ["list"], description: "List all official shadcn primitives, grouped by purpose" },
3517
+ { name: "search_components", actions: ["search"], description: "Fuzzy search components by name or description" },
3518
+ { name: "get_component", actions: ["get"], description: "Fetch live component schema (files, deps, source) from the registry" },
3519
+ { name: "install_command", actions: ["build"], description: "Generate `npx shadcn@latest add <name>` install command" },
3520
+ { name: "list_blocks", actions: ["list"], description: "List curated block patterns (login, dashboard, pricing, FAQ, etc.)" },
3521
+ { name: "recommend", actions: ["recommend"], description: "Recommend components for a free-text use case" },
3522
+ { name: "theme", actions: ["get"], description: "Return brand-themed @theme inline CSS for Tailwind v4" },
3523
+ { name: "init", actions: ["build"], description: "One-shot bootstrap commands for new projects" },
3524
+ ],
3525
+ endpoints: {
3526
+ get_component_schema: { method: "GET", path: "/r/styles/new-york/{name}.json" },
3527
+ get_index: { method: "GET", path: "/r/styles/new-york/index.json" },
3528
+ },
3529
+ authHeader: () => ({ "User-Agent": "0nMCP/4.10", "Accept": "application/json" }),
3530
+ },
3531
+
3532
+ // ============================================================
3533
+ // v4.10.0 — 0nCore product surface (UCP, Marketplace, builders)
3534
+ // Each wraps the corresponding onork-app HTTP endpoint.
3535
+ // ============================================================
3536
+
3537
+ // ── UCP — Universal Commerce Protocol ─────────────────────
3538
+ ucp: {
3539
+ name: "UCP — Universal Commerce Protocol",
3540
+ type: "commerce",
3541
+ description: "Universal commerce: discover, list, and check out any product/app/download from the unified 0n catalog. One protocol, every store.",
3542
+ baseUrl: "https://0ncore.com",
3543
+ authType: "bearer_or_session",
3544
+ credentialKeys: ["onToken"],
3545
+ capabilities: [
3546
+ { name: "list_offers", actions: ["list"], description: "List all active products, downloads, and plans" },
3547
+ { name: "create_checkout", actions: ["create"], description: "Generate a Stripe Checkout session for a product slug" },
3548
+ { name: "get_download_link", actions: ["get"], description: "Verify entitlement and return a signed download URL" },
3549
+ { name: "list_purchases", actions: ["list"], description: "List the user's completed purchases" },
3550
+ ],
3551
+ endpoints: {
3552
+ list_offers: { method: "GET", path: "/api/commerce/offers", query: ["category", "limit"] },
3553
+ create_checkout: { method: "POST", path: "/api/commerce/checkout", body: { slug: "", quantity: 1 } },
3554
+ get_download_link: { method: "GET", path: "/api/commerce/download", query: ["slug"] },
3555
+ },
3556
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3557
+ },
3558
+
3559
+ // ── Marketplace — .0n App Marketplace ─────────────────────
3560
+ marketplace: {
3561
+ name: ".0n App Marketplace",
3562
+ type: "marketplace",
3563
+ description: "Browse, install, and execute .0n apps + first-party 0nCore products. Unified catalog of UCP products and marketplace apps with plan-aware install + Stripe checkout.",
3564
+ baseUrl: "https://0ncore.com",
3565
+ authType: "bearer_or_session",
3566
+ credentialKeys: ["onToken"],
3567
+ capabilities: [
3568
+ { name: "list_apps", actions: ["list"], description: "Browse the unified catalog (UCP products + apps)" },
3569
+ { name: "install_app", actions: ["install"], description: "Install a free app for the current location" },
3570
+ { name: "checkout_app", actions: ["create"], description: "Stripe checkout for a paid app" },
3571
+ { name: "execute_app", actions: ["run"], description: "Execute an installed .0n app" },
3572
+ { name: "list_installed",actions: ["list"], description: "List apps installed on the current location" },
3573
+ ],
3574
+ endpoints: {
3575
+ list_apps: { method: "GET", path: "/api/widgets/marketplace/catalog", query: ["locationId", "mode"] },
3576
+ install_app: { method: "POST", path: "/api/widgets/marketplace/install", body: { slug: "", source: "" } },
3577
+ checkout_app: { method: "POST", path: "/api/widgets/marketplace/checkout", body: { slug: "", source: "" } },
3578
+ execute_app: { method: "POST", path: "/api/marketplace/execute/{appId}", body: {} },
3579
+ list_installed: { method: "GET", path: "/api/marketplace/my-apps" },
3580
+ },
3581
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3582
+ },
3583
+
3584
+ // ── Course Builder — AI course generator ──────────────────
3585
+ course_builder: {
3586
+ name: "0n Course Builder",
3587
+ type: "ai-builder",
3588
+ description: "Generate complete courses from a description. Outline + lesson content + quizzes + sales page, published into the connected courses platform. Radial-burst lesson generation; graceful publish fallback.",
3589
+ baseUrl: "https://0ncore.com",
3590
+ authType: "bearer_or_session",
3591
+ credentialKeys: ["onToken"],
3592
+ capabilities: [
3593
+ { name: "generate_course", actions: ["create"], description: "End-to-end course generation: outline + all lessons + sales page" },
3594
+ { name: "list_courses", actions: ["list"], description: "List previously-generated courses" },
3595
+ { name: "publish_course", actions: ["create"], description: "Publish a generated course (graceful fallback if rejected)" },
3596
+ ],
3597
+ endpoints: {
3598
+ generate_course: { method: "POST", path: "/api/course-builder/courses", body: { topic: "", audience: "", lessonCount: 6, includeQuizzes: true, learningOutcome: "", tone: "professional" } },
3599
+ list_courses: { method: "GET", path: "/api/course-builder/courses", query: ["status", "limit"] },
3600
+ publish_course: { method: "POST", path: "/api/course-builder/courses/{id}/publish", body: { priceCents: 0 } },
3601
+ },
3602
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3603
+ },
3604
+
3605
+ // ── Lead Magnet — viral growth loop ───────────────────────
3606
+ lead_magnet: {
3607
+ name: "0n Lead Magnet",
3608
+ type: "marketing",
3609
+ description: "Run viral growth loops. Landing page + opt-in + ebook delivery + recommendations modal + builtwith page. Every funnel grows the customer's list AND grows the platform.",
3610
+ baseUrl: "https://0ncore.com",
3611
+ authType: "bearer_or_session",
3612
+ credentialKeys: ["onToken"],
3613
+ capabilities: [
3614
+ { name: "list_funnels", actions: ["list"], description: "List the user's funnels with subscriber stats" },
3615
+ { name: "create_funnel", actions: ["create"], description: "Create a new lead-magnet funnel" },
3616
+ { name: "update_funnel", actions: ["update"], description: "Update funnel config (offer, copy, redirects)" },
3617
+ { name: "set_recommendations", actions: ["update"], description: "Bulk-replace the modal's ordered recommendation list" },
3618
+ { name: "record_optin", actions: ["create"], description: "Record a public opt-in (used by landing pages)" },
3619
+ { name: "get_recommendations", actions: ["get"], description: "Read the modal's config + active recommendations" },
3620
+ ],
3621
+ endpoints: {
3622
+ list_funnels: { method: "GET", path: "/api/lead-magnet/funnels" },
3623
+ create_funnel: { method: "POST", path: "/api/lead-magnet/funnels", body: { funnel_name: "", offer_title: "", offer_description: "", offer_file_url: "" } },
3624
+ get_funnel: { method: "GET", path: "/api/lead-magnet/funnels/{funnelId}" },
3625
+ update_funnel: { method: "PUT", path: "/api/lead-magnet/funnels/{funnelId}", body: {} },
3626
+ set_recommendations: { method: "PUT", path: "/api/lead-magnet/funnels/{funnelId}/recommendations", body: { recommendations: [] } },
3627
+ record_optin: { method: "POST", path: "/api/lead-magnet/opt-in", body: { email: "", funnel_id: "default" } },
3628
+ get_recommendations: { method: "GET", path: "/api/lead-magnet/recommendations", query: ["funnel_id"] },
3629
+ },
3630
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3631
+ },
3632
+
3633
+ // ── Automation Builder — visual + agentic ─────────────────
3634
+ automation_builder: {
3635
+ name: "0n Automation Builder",
3636
+ type: "ai-builder",
3637
+ description: "Generate, test, save, schedule, and run automations from natural language. Backed by the visual workflow canvas + .0n SWITCH file format. Mutations gated by user confirmation.",
3638
+ baseUrl: "https://0ncore.com",
3639
+ authType: "bearer_or_session",
3640
+ credentialKeys: ["onToken"],
3641
+ capabilities: [
3642
+ { name: "generate_workflow", actions: ["create"], description: "Natural language → .0n workflow JSON (non-mutating)" },
3643
+ { name: "test_workflow", actions: ["create"], description: "Dry-run a workflow against sample input (non-mutating)" },
3644
+ { name: "activate_workflow", actions: ["create"], description: "Save + register trigger (cron or webhook) + activate" },
3645
+ { name: "run_workflow", actions: ["create"], description: "Execute a saved workflow on-demand" },
3646
+ { name: "list_workflows", actions: ["list"], description: "List the user's saved workflows" },
3647
+ { name: "suggest", actions: ["create"], description: "AI-powered next-capability suggestions for a workflow-in-progress" },
3648
+ ],
3649
+ endpoints: {
3650
+ generate_workflow: { method: "POST", path: "/api/automations/generate", body: { description: "" } },
3651
+ test_workflow: { method: "POST", path: "/api/automations/execute", body: { workflow: {}, dryRun: true } },
3652
+ activate_workflow: { method: "POST", path: "/api/automations/activate", body: { workflow: {} } },
3653
+ run_workflow: { method: "POST", path: "/api/automations/execute", body: { workflow: {} } },
3654
+ list_workflows: { method: "GET", path: "/api/automations/list" },
3655
+ suggest: { method: "POST", path: "/api/automations/suggest", body: { currentNodes: [] } },
3656
+ },
3657
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3658
+ },
3659
+
3660
+ // ── SaaS Factory — full SaaS provisioning ─────────────────
3661
+ saas_factory: {
3662
+ name: "0n SaaS Factory",
3663
+ type: "ai-builder",
3664
+ description: "One-shot provisioning of a complete SaaS for a customer or sub-account: brand-themed landing page, auth, billing pipeline, custom domain wiring, CRM mirror. The same factory that ships RocketPost-style apps.",
3665
+ baseUrl: "https://0ncore.com",
3666
+ authType: "bearer_or_session",
3667
+ credentialKeys: ["onToken"],
3668
+ capabilities: [
3669
+ { name: "provision_saas", actions: ["create"], description: "Provision a new SaaS instance with brand, auth, billing, domain" },
3670
+ { name: "deploy_snapshot", actions: ["create"], description: "Deploy a starter snapshot (custom fields, tags, pipelines, custom values) to a sub-account" },
3671
+ { name: "configure_billing", actions: ["update"], description: "Configure Stripe products + tier mapping for a SaaS instance" },
3672
+ ],
3673
+ endpoints: {
3674
+ provision_saas: { method: "POST", path: "/api/provision", body: { brand: "", domain: "" } },
3675
+ deploy_snapshot: { method: "POST", path: "/api/snapshot/deploy", body: { locationId: "", version: 0 } },
3676
+ configure_billing: { method: "POST", path: "/api/marketplace/onboard", body: {} },
3677
+ },
3678
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3679
+ },
3680
+
3681
+ // ── App Builder — .0n app generator ───────────────────────
3682
+ app_builder: {
3683
+ name: "0n App Builder",
3684
+ type: "ai-builder",
3685
+ description: "Generate a .0n app from a description. Produces a packaged .0n bundle that installs via the marketplace and runs against the universal capability surface.",
3686
+ baseUrl: "https://0ncore.com",
3687
+ authType: "bearer_or_session",
3688
+ credentialKeys: ["onToken"],
3689
+ capabilities: [
3690
+ { name: "generate_app", actions: ["create"], description: "Build a complete .0n app from a description" },
3691
+ { name: "publish_app", actions: ["create"], description: "Publish a generated app to the marketplace" },
3692
+ { name: "execute_app", actions: ["run"], description: "Execute an installed .0n app for a location" },
3693
+ ],
3694
+ endpoints: {
3695
+ generate_app: { method: "POST", path: "/api/app-builder/generate", body: { description: "", capabilities: [] } },
3696
+ publish_app: { method: "POST", path: "/api/marketplace/publish", body: {} },
3697
+ execute_app: { method: "POST", path: "/api/marketplace/execute/{appId}",body: {} },
3698
+ },
3699
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3700
+ },
3701
+
3702
+ // ── Website Builder — landing + multi-page generator ──────
3703
+ website_builder: {
3704
+ name: "0n Website Builder",
3705
+ type: "ai-builder",
3706
+ description: "Generate landing pages and multi-page sites from a description. 5 curated shadcn themes, brand-aware copy, one-shot Vercel deploy. Powered by the landing_pages service.",
3707
+ baseUrl: "https://0ncore.com",
3708
+ authType: "bearer_or_session",
3709
+ credentialKeys: ["onToken"],
3710
+ capabilities: [
3711
+ { name: "list_themes", actions: ["list"], description: "List the 5 curated shadcn themes" },
3712
+ { name: "generate_page",actions: ["create"], description: "Generate a landing page from brand + theme" },
3713
+ { name: "render_page", actions: ["create"], description: "Render a generated page to HTML" },
3714
+ { name: "deploy_page", actions: ["create"], description: "One-shot Vercel deploy of a generated page" },
3715
+ ],
3716
+ endpoints: {
3717
+ list_themes: { method: "GET", path: "/api/landing-pages/themes" },
3718
+ generate_page: { method: "POST", path: "/api/landing-pages/generate", body: { theme: "", brand: {}, prompt: "" } },
3719
+ render_page: { method: "POST", path: "/api/landing-pages/render", body: { page: {} } },
3720
+ deploy_page: { method: "POST", path: "/api/landing-pages/deploy", body: { page: {}, domain: "" } },
3721
+ },
3722
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3723
+ },
3724
+
3725
+ // ── Agentic Automation Generator ──────────────────────────
3726
+ agentic_automation: {
3727
+ name: "Agentic Automation Generator",
3728
+ type: "agentic-ai",
3729
+ description: "Tell it what you want done. The agent breaks it down, picks tools, configures inputs, runs the workflow, and reports outcomes. Combines automation_builder + 0nMCP's full tool catalog into a self-driving generator.",
3730
+ baseUrl: "https://0ncore.com",
3731
+ authType: "bearer_or_session",
3732
+ credentialKeys: ["onToken"],
3733
+ capabilities: [
3734
+ { name: "generate_plan", actions: ["create"], description: "Decompose an outcome into a step plan with tool selections" },
3735
+ { name: "execute_plan", actions: ["run"], description: "Execute a generated plan with confirmation gating on mutations" },
3736
+ { name: "iterate_plan", actions: ["update"], description: "Refine a plan based on user feedback" },
3737
+ ],
3738
+ endpoints: {
3739
+ generate_plan: { method: "POST", path: "/api/agentic/plan", body: { outcome: "", context: {} } },
3740
+ execute_plan: { method: "POST", path: "/api/agentic/execute", body: { planId: "", autoApprove: false } },
3741
+ iterate_plan: { method: "POST", path: "/api/agentic/iterate", body: { planId: "", feedback: "" } },
3742
+ },
3743
+ authHeader: (creds) => ({ "Authorization": `Bearer ${creds.onToken}`, "Content-Type": "application/json" }),
3744
+ },
3745
+
3507
3746
  };
3508
3747
 
3509
3748
  // ── Helpers ────────────────────────────────────────────────
package/index.js CHANGED
@@ -34,6 +34,9 @@ import { unsealedCache } from "./vault/cache.js";
34
34
  import { registerEngineTools, registerTrainingTools, registerFeedTools, registerCouncilTools, registerSxoWriterTools } from "./engine/index.js";
35
35
  import { registerBrainTools } from "./engine/brain.js";
36
36
  import { registerLocalAITools } from "./engine/local-ai.js";
37
+ import { registerLandingPageTools } from "./landing_pages/index.js";
38
+ import { registerShadcnTools } from "./shadcn.js";
39
+ import { registerProgrammaticDesignTools } from "./pwd.js";
37
40
  import { CapabilityProxy } from "./capability-proxy.js";
38
41
  import { SERVICE_CATALOG } from "./catalog.js";
39
42
 
@@ -103,6 +106,30 @@ registerContainerTools(server, z);
103
106
 
104
107
  registerDeedTools(server, z);
105
108
 
109
+ // ============================================================
110
+ // LANDING PAGES (shadcn themes -> AI generate -> render -> deploy)
111
+ // First add-on after the ".0n app" pattern: lives here at the
112
+ // 0nMCP source, then gets surfaced as a billable add-on in 0nCore.
113
+ // ============================================================
114
+
115
+ registerLandingPageTools(server, { groqKey: process.env.GROQ_API_KEY });
116
+
117
+ // ============================================================
118
+ // SHADCN/UI REGISTRY (search + recommend + install + 0n theme)
119
+ // shadcn becomes a first-class 0nMCP service so any AI editor
120
+ // connected to 0nMCP can discover and install components without
121
+ // leaving the conversation.
122
+ // ============================================================
123
+
124
+ registerShadcnTools(server, z);
125
+
126
+ // ============================================================
127
+ // 0n PROGRAMMATIC WEBSITE DESIGN COMPONENTS
128
+ // (the 0n shadcn-compatible registry hosted at 0nmcp.com/r/*)
129
+ // ============================================================
130
+
131
+ registerProgrammaticDesignTools(server, z);
132
+
106
133
  // ============================================================
107
134
  // START SERVER (stdio transport)
108
135
  // ============================================================
package/lib/badges.json CHANGED
@@ -2,31 +2,31 @@
2
2
  "tools": {
3
3
  "schemaVersion": 1,
4
4
  "label": "tools",
5
- "message": "1280",
5
+ "message": "1320",
6
6
  "color": "00ff88"
7
7
  },
8
8
  "services": {
9
9
  "schemaVersion": 1,
10
10
  "label": "services",
11
- "message": "96",
11
+ "message": "105",
12
12
  "color": "00d4ff"
13
13
  },
14
14
  "actions": {
15
15
  "schemaVersion": 1,
16
16
  "label": "actions",
17
- "message": "209",
17
+ "message": "231",
18
18
  "color": "ff6b35"
19
19
  },
20
20
  "triggers": {
21
21
  "schemaVersion": 1,
22
22
  "label": "triggers",
23
- "message": "310",
23
+ "message": "326",
24
24
  "color": "9945ff"
25
25
  },
26
26
  "total": {
27
27
  "schemaVersion": 1,
28
28
  "label": "capabilities",
29
- "message": "2073",
29
+ "message": "2151",
30
30
  "color": "00ff88"
31
31
  }
32
32
  }
package/lib/catalog.json CHANGED
@@ -3,8 +3,8 @@
3
3
  "_meta": {
4
4
  "name": "0nMCP Service Catalog",
5
5
  "description": "Single source of truth for all services, tools, actions, and triggers in the 0nMCP ecosystem",
6
- "version": "3.0.0",
7
- "lastUpdated": "2026-04-05T21:58:11.968Z",
6
+ "version": "3.10.0",
7
+ "lastUpdated": "2026-04-28T13:23:11.247Z",
8
8
  "maintainer": "0nORK <hello@0nork.com>"
9
9
  },
10
10
  "categories": {
@@ -91,6 +91,18 @@
91
91
  "social": {
92
92
  "label": "Social Media",
93
93
  "icon": "share"
94
+ },
95
+ "commerce": {
96
+ "name": "commerce",
97
+ "description": ""
98
+ },
99
+ "marketplace": {
100
+ "name": "marketplace",
101
+ "description": ""
102
+ },
103
+ "ai-builder": {
104
+ "name": "ai builder",
105
+ "description": ""
94
106
  }
95
107
  },
96
108
  "services": [
@@ -3044,6 +3056,192 @@
3044
3056
  "cloudconvert_deleted",
3045
3057
  "cloudconvert_webhook"
3046
3058
  ]
3059
+ },
3060
+ {
3061
+ "id": "ucp",
3062
+ "name": "UCP — Universal Commerce Protocol",
3063
+ "category": "commerce",
3064
+ "description": "Universal commerce: discover, list, and check out any product/app/download from the unified 0n catalog. One protocol, every store.",
3065
+ "tools": [
3066
+ "ucp_list_offers",
3067
+ "ucp_create_checkout",
3068
+ "ucp_get_download_link",
3069
+ "ucp_list_purchases"
3070
+ ],
3071
+ "actions": [
3072
+ "offer_purchased",
3073
+ "download_delivered"
3074
+ ],
3075
+ "triggers": [
3076
+ "ucp_purchase_completed",
3077
+ "ucp_subscription_started"
3078
+ ]
3079
+ },
3080
+ {
3081
+ "id": "marketplace",
3082
+ "name": ".0n App Marketplace",
3083
+ "category": "marketplace",
3084
+ "description": "Browse, install, and execute .0n apps + first-party 0nCore products. Unified catalog with plan-aware install + Stripe checkout.",
3085
+ "tools": [
3086
+ "marketplace_list_apps",
3087
+ "marketplace_install_app",
3088
+ "marketplace_checkout_app",
3089
+ "marketplace_execute_app",
3090
+ "marketplace_list_installed"
3091
+ ],
3092
+ "actions": [
3093
+ "app_installed",
3094
+ "app_uninstalled",
3095
+ "app_executed"
3096
+ ],
3097
+ "triggers": [
3098
+ "marketplace_install_completed",
3099
+ "marketplace_purchase_completed"
3100
+ ]
3101
+ },
3102
+ {
3103
+ "id": "course_builder",
3104
+ "name": "0n Course Builder",
3105
+ "category": "ai-builder",
3106
+ "description": "Generate complete courses from a description. Outline + lessons + quizzes + sales page, published into the connected courses platform.",
3107
+ "tools": [
3108
+ "course_builder_generate_course",
3109
+ "course_builder_list_courses",
3110
+ "course_builder_publish_course",
3111
+ "course_builder_generate_outline",
3112
+ "course_builder_generate_lesson",
3113
+ "course_builder_generate_sales_page"
3114
+ ],
3115
+ "actions": [
3116
+ "course_generated",
3117
+ "course_published"
3118
+ ],
3119
+ "triggers": [
3120
+ "course_publish_completed",
3121
+ "course_publish_failed"
3122
+ ]
3123
+ },
3124
+ {
3125
+ "id": "lead_magnet",
3126
+ "name": "0n Lead Magnet",
3127
+ "category": "marketing",
3128
+ "description": "Run viral growth loops. Landing + opt-in + ebook delivery + recommendations modal + builtwith page.",
3129
+ "tools": [
3130
+ "lead_magnet_list_funnels",
3131
+ "lead_magnet_create_funnel",
3132
+ "lead_magnet_update_funnel",
3133
+ "lead_magnet_set_recommendations",
3134
+ "lead_magnet_record_optin",
3135
+ "lead_magnet_get_recommendations"
3136
+ ],
3137
+ "actions": [
3138
+ "lead_subscribed",
3139
+ "lead_verified",
3140
+ "lead_modal_subscribed"
3141
+ ],
3142
+ "triggers": [
3143
+ "lead_optin",
3144
+ "lead_email_verified",
3145
+ "lead_modal_completed"
3146
+ ]
3147
+ },
3148
+ {
3149
+ "id": "automation_builder",
3150
+ "name": "0n Automation Builder",
3151
+ "category": "ai-builder",
3152
+ "description": "Generate, test, save, schedule, and run automations from natural language. Visual canvas + .0n SWITCH file format.",
3153
+ "tools": [
3154
+ "automation_builder_generate_workflow",
3155
+ "automation_builder_test_workflow",
3156
+ "automation_builder_activate_workflow",
3157
+ "automation_builder_run_workflow",
3158
+ "automation_builder_list_workflows",
3159
+ "automation_builder_suggest"
3160
+ ],
3161
+ "actions": [
3162
+ "workflow_generated",
3163
+ "workflow_activated",
3164
+ "workflow_executed"
3165
+ ],
3166
+ "triggers": [
3167
+ "workflow_run_completed",
3168
+ "workflow_run_failed"
3169
+ ]
3170
+ },
3171
+ {
3172
+ "id": "saas_factory",
3173
+ "name": "0n SaaS Factory",
3174
+ "category": "ai-builder",
3175
+ "description": "One-shot provisioning of a complete SaaS instance: brand-themed landing, auth, billing, custom domain, CRM mirror.",
3176
+ "tools": [
3177
+ "saas_factory_provision_saas",
3178
+ "saas_factory_deploy_snapshot",
3179
+ "saas_factory_configure_billing"
3180
+ ],
3181
+ "actions": [
3182
+ "saas_provisioned",
3183
+ "snapshot_deployed"
3184
+ ],
3185
+ "triggers": [
3186
+ "saas_provision_completed"
3187
+ ]
3188
+ },
3189
+ {
3190
+ "id": "app_builder",
3191
+ "name": "0n App Builder",
3192
+ "category": "ai-builder",
3193
+ "description": "Generate a .0n app from a description. Produces a packaged .0n bundle that installs via the marketplace.",
3194
+ "tools": [
3195
+ "app_builder_generate_app",
3196
+ "app_builder_publish_app",
3197
+ "app_builder_execute_app"
3198
+ ],
3199
+ "actions": [
3200
+ "app_generated",
3201
+ "app_published"
3202
+ ],
3203
+ "triggers": [
3204
+ "app_publish_completed"
3205
+ ]
3206
+ },
3207
+ {
3208
+ "id": "website_builder",
3209
+ "name": "0n Website Builder",
3210
+ "category": "ai-builder",
3211
+ "description": "Generate landing pages and multi-page sites from a description. 5 curated themes, brand-aware copy, one-shot deploy.",
3212
+ "tools": [
3213
+ "website_builder_list_themes",
3214
+ "website_builder_generate_page",
3215
+ "website_builder_render_page",
3216
+ "website_builder_deploy_page"
3217
+ ],
3218
+ "actions": [
3219
+ "page_generated",
3220
+ "page_deployed"
3221
+ ],
3222
+ "triggers": [
3223
+ "page_deploy_completed"
3224
+ ]
3225
+ },
3226
+ {
3227
+ "id": "agentic_automation",
3228
+ "name": "Agentic Automation Generator",
3229
+ "category": "ai-builder",
3230
+ "description": "Tell it what you want done. The agent decomposes, picks tools, configures, runs the plan, reports outcomes.",
3231
+ "tools": [
3232
+ "agentic_automation_generate_plan",
3233
+ "agentic_automation_execute_plan",
3234
+ "agentic_automation_iterate_plan"
3235
+ ],
3236
+ "actions": [
3237
+ "plan_generated",
3238
+ "plan_executed",
3239
+ "plan_iterated"
3240
+ ],
3241
+ "triggers": [
3242
+ "agentic_plan_completed",
3243
+ "agentic_plan_failed"
3244
+ ]
3047
3245
  }
3048
3246
  ]
3049
- }
3247
+ }
package/lib/stats.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
- "generated": "2026-04-23T05:52:14.844Z",
3
- "catalogVersion": "3.0.0",
4
- "services": 96,
5
- "tools": 1280,
6
- "actions": 209,
7
- "triggers": 310,
8
- "categories": 21,
2
+ "generated": "2026-04-28T13:23:59.281Z",
3
+ "catalogVersion": "3.10.0",
4
+ "services": 105,
5
+ "tools": 1320,
6
+ "actions": 231,
7
+ "triggers": 326,
8
+ "categories": 24,
9
9
  "perService": {
10
10
  "crm": {
11
11
  "name": "CRM",
@@ -774,6 +774,78 @@
774
774
  "actions": 3,
775
775
  "triggers": 4,
776
776
  "total": 39
777
+ },
778
+ "ucp": {
779
+ "name": "UCP — Universal Commerce Protocol",
780
+ "category": "commerce",
781
+ "tools": 4,
782
+ "actions": 2,
783
+ "triggers": 2,
784
+ "total": 8
785
+ },
786
+ "marketplace": {
787
+ "name": ".0n App Marketplace",
788
+ "category": "marketplace",
789
+ "tools": 5,
790
+ "actions": 3,
791
+ "triggers": 2,
792
+ "total": 10
793
+ },
794
+ "course_builder": {
795
+ "name": "0n Course Builder",
796
+ "category": "ai-builder",
797
+ "tools": 6,
798
+ "actions": 2,
799
+ "triggers": 2,
800
+ "total": 10
801
+ },
802
+ "lead_magnet": {
803
+ "name": "0n Lead Magnet",
804
+ "category": "marketing",
805
+ "tools": 6,
806
+ "actions": 3,
807
+ "triggers": 3,
808
+ "total": 12
809
+ },
810
+ "automation_builder": {
811
+ "name": "0n Automation Builder",
812
+ "category": "ai-builder",
813
+ "tools": 6,
814
+ "actions": 3,
815
+ "triggers": 2,
816
+ "total": 11
817
+ },
818
+ "saas_factory": {
819
+ "name": "0n SaaS Factory",
820
+ "category": "ai-builder",
821
+ "tools": 3,
822
+ "actions": 2,
823
+ "triggers": 1,
824
+ "total": 6
825
+ },
826
+ "app_builder": {
827
+ "name": "0n App Builder",
828
+ "category": "ai-builder",
829
+ "tools": 3,
830
+ "actions": 2,
831
+ "triggers": 1,
832
+ "total": 6
833
+ },
834
+ "website_builder": {
835
+ "name": "0n Website Builder",
836
+ "category": "ai-builder",
837
+ "tools": 4,
838
+ "actions": 2,
839
+ "triggers": 1,
840
+ "total": 7
841
+ },
842
+ "agentic_automation": {
843
+ "name": "Agentic Automation Generator",
844
+ "category": "ai-builder",
845
+ "tools": 3,
846
+ "actions": 3,
847
+ "triggers": 2,
848
+ "total": 8
777
849
  }
778
850
  },
779
851
  "perCategory": {
@@ -863,10 +935,10 @@
863
935
  },
864
936
  "marketing": {
865
937
  "label": "Marketing",
866
- "services": 4,
867
- "tools": 41,
868
- "actions": 10,
869
- "triggers": 15
938
+ "services": 5,
939
+ "tools": 47,
940
+ "actions": 13,
941
+ "triggers": 18
870
942
  },
871
943
  "accounting": {
872
944
  "label": "Accounting",
@@ -923,6 +995,27 @@
923
995
  "tools": 50,
924
996
  "actions": 12,
925
997
  "triggers": 18
998
+ },
999
+ "commerce": {
1000
+ "label": "commerce",
1001
+ "services": 1,
1002
+ "tools": 4,
1003
+ "actions": 2,
1004
+ "triggers": 2
1005
+ },
1006
+ "marketplace": {
1007
+ "label": "marketplace",
1008
+ "services": 1,
1009
+ "tools": 5,
1010
+ "actions": 3,
1011
+ "triggers": 2
1012
+ },
1013
+ "ai-builder": {
1014
+ "label": "ai-builder",
1015
+ "services": 6,
1016
+ "tools": 25,
1017
+ "actions": 14,
1018
+ "triggers": 9
926
1019
  }
927
1020
  },
928
1021
  "allTools": [
@@ -2205,7 +2298,47 @@
2205
2298
  "cloudconvert_get_balance",
2206
2299
  "cloudconvert_create_webhook",
2207
2300
  "cloudconvert_list_webhooks",
2208
- "cloudconvert_delete_webhook"
2301
+ "cloudconvert_delete_webhook",
2302
+ "ucp_list_offers",
2303
+ "ucp_create_checkout",
2304
+ "ucp_get_download_link",
2305
+ "ucp_list_purchases",
2306
+ "marketplace_list_apps",
2307
+ "marketplace_install_app",
2308
+ "marketplace_checkout_app",
2309
+ "marketplace_execute_app",
2310
+ "marketplace_list_installed",
2311
+ "course_builder_generate_course",
2312
+ "course_builder_list_courses",
2313
+ "course_builder_publish_course",
2314
+ "course_builder_generate_outline",
2315
+ "course_builder_generate_lesson",
2316
+ "course_builder_generate_sales_page",
2317
+ "lead_magnet_list_funnels",
2318
+ "lead_magnet_create_funnel",
2319
+ "lead_magnet_update_funnel",
2320
+ "lead_magnet_set_recommendations",
2321
+ "lead_magnet_record_optin",
2322
+ "lead_magnet_get_recommendations",
2323
+ "automation_builder_generate_workflow",
2324
+ "automation_builder_test_workflow",
2325
+ "automation_builder_activate_workflow",
2326
+ "automation_builder_run_workflow",
2327
+ "automation_builder_list_workflows",
2328
+ "automation_builder_suggest",
2329
+ "saas_factory_provision_saas",
2330
+ "saas_factory_deploy_snapshot",
2331
+ "saas_factory_configure_billing",
2332
+ "app_builder_generate_app",
2333
+ "app_builder_publish_app",
2334
+ "app_builder_execute_app",
2335
+ "website_builder_list_themes",
2336
+ "website_builder_generate_page",
2337
+ "website_builder_render_page",
2338
+ "website_builder_deploy_page",
2339
+ "agentic_automation_generate_plan",
2340
+ "agentic_automation_execute_plan",
2341
+ "agentic_automation_iterate_plan"
2209
2342
  ],
2210
2343
  "allActions": [
2211
2344
  "crm_sync",
@@ -2416,7 +2549,29 @@
2416
2549
  "render_export",
2417
2550
  "cloudconvert_sync",
2418
2551
  "cloudconvert_export",
2419
- "cloudconvert_report"
2552
+ "cloudconvert_report",
2553
+ "offer_purchased",
2554
+ "download_delivered",
2555
+ "app_installed",
2556
+ "app_uninstalled",
2557
+ "app_executed",
2558
+ "course_generated",
2559
+ "course_published",
2560
+ "lead_subscribed",
2561
+ "lead_verified",
2562
+ "lead_modal_subscribed",
2563
+ "workflow_generated",
2564
+ "workflow_activated",
2565
+ "workflow_executed",
2566
+ "saas_provisioned",
2567
+ "snapshot_deployed",
2568
+ "app_generated",
2569
+ "app_published",
2570
+ "page_generated",
2571
+ "page_deployed",
2572
+ "plan_generated",
2573
+ "plan_executed",
2574
+ "plan_iterated"
2420
2575
  ],
2421
2576
  "allTriggers": [
2422
2577
  "contact_created",
@@ -2728,7 +2883,23 @@
2728
2883
  "cloudconvert_created",
2729
2884
  "cloudconvert_updated",
2730
2885
  "cloudconvert_deleted",
2731
- "cloudconvert_webhook"
2886
+ "cloudconvert_webhook",
2887
+ "ucp_purchase_completed",
2888
+ "ucp_subscription_started",
2889
+ "marketplace_install_completed",
2890
+ "marketplace_purchase_completed",
2891
+ "course_publish_completed",
2892
+ "course_publish_failed",
2893
+ "lead_optin",
2894
+ "lead_email_verified",
2895
+ "lead_modal_completed",
2896
+ "workflow_run_completed",
2897
+ "workflow_run_failed",
2898
+ "saas_provision_completed",
2899
+ "app_publish_completed",
2900
+ "page_deploy_completed",
2901
+ "agentic_plan_completed",
2902
+ "agentic_plan_failed"
2732
2903
  ],
2733
2904
  "allServiceIds": [
2734
2905
  "crm",
@@ -2826,7 +2997,16 @@
2826
2997
  "cockroachdb",
2827
2998
  "railway",
2828
2999
  "render",
2829
- "cloudconvert"
3000
+ "cloudconvert",
3001
+ "ucp",
3002
+ "marketplace",
3003
+ "course_builder",
3004
+ "lead_magnet",
3005
+ "automation_builder",
3006
+ "saas_factory",
3007
+ "app_builder",
3008
+ "website_builder",
3009
+ "agentic_automation"
2830
3010
  ],
2831
3011
  "crmTools": 245,
2832
3012
  "vaultTools": 4,
@@ -2834,6 +3014,6 @@
2834
3014
  "deedTools": 6,
2835
3015
  "engineTools": 6,
2836
3016
  "appTools": 5,
2837
- "totalTools": 1554,
2838
- "totalCapabilities": 2073
3017
+ "totalTools": 1594,
3018
+ "totalCapabilities": 2151
2839
3019
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "0nmcp",
3
- "version": "4.5.1",
3
+ "version": "4.10.1",
4
4
  "mcpName": "io.github.0nork/0nMCP",
5
- "description": "Universal AI API Orchestrator — 1554 tools, 96 services, portable AI Brain bundles + machine-bound vault encryption + Application Engine. The most comprehensive MCP server available. Free and open source from 0nORK.",
5
+ "description": "Universal AI API Orchestrator — 1,594 tools across 105 services. UCP (Universal Commerce Protocol), the .0n App Marketplace, AI Course Builder, Lead Magnet Loop, Automation Builder, SaaS Factory, App Builder, Website Builder, and the Agentic Automation Generator. Plus portable AI Brain bundles, machine-bound vault encryption, and the Application Engine. Public availability for 0nCore: 2026-05-01. Free and open source from 0nORK.",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "types": "types/index.d.ts",
@@ -207,19 +207,19 @@
207
207
  "LICENSE"
208
208
  ],
209
209
  "0nmcp-stats": {
210
- "tools": 1280,
210
+ "tools": 1320,
211
211
  "crmTools": 245,
212
212
  "vaultTools": 4,
213
213
  "vaultContainerTools": 8,
214
214
  "deedTools": 6,
215
215
  "engineTools": 6,
216
216
  "appTools": 5,
217
- "totalTools": 1554,
218
- "services": 96,
219
- "actions": 209,
220
- "triggers": 310,
221
- "totalCapabilities": 2073,
222
- "categories": 21,
223
- "lastUpdated": "2026-04-23T05:52:14.844Z"
217
+ "totalTools": 1594,
218
+ "services": 105,
219
+ "actions": 231,
220
+ "triggers": 326,
221
+ "totalCapabilities": 2151,
222
+ "categories": 24,
223
+ "lastUpdated": "2026-04-28T13:23:59.281Z"
224
224
  }
225
225
  }