0nmcp 4.10.1 → 4.11.0
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/catalog.js +30 -0
- package/lib/badges.json +5 -5
- package/lib/catalog.json +25 -0
- package/lib/stats.json +37 -12
- package/package.json +10 -10
package/catalog.js
CHANGED
|
@@ -3529,6 +3529,36 @@ export const SERVICE_CATALOG = {
|
|
|
3529
3529
|
authHeader: () => ({ "User-Agent": "0nMCP/4.10", "Accept": "application/json" }),
|
|
3530
3530
|
},
|
|
3531
3531
|
|
|
3532
|
+
// ── CrewAI Enterprise ─────────────────────────────────────
|
|
3533
|
+
// Wraps the per-crew REST API at https://<crew>.crewai.com.
|
|
3534
|
+
// 50 free crew runs/month on the CrewAI free tier.
|
|
3535
|
+
// Standalone MCP server also published as `0nmcp-crewai` on npm.
|
|
3536
|
+
crewai: {
|
|
3537
|
+
name: "CrewAI",
|
|
3538
|
+
type: "ai-agents",
|
|
3539
|
+
description: "Multi-agent orchestration via CrewAI Enterprise. Kick off crew runs, check status, list inputs, resume paused runs. 50 free runs/month per account on the free tier.",
|
|
3540
|
+
baseUrl: "https://crew.crewai.com", // placeholder — actual base is per-crew, resolved at call time
|
|
3541
|
+
authType: "bearer",
|
|
3542
|
+
credentialKeys: ["bearerToken", "crewName"],
|
|
3543
|
+
capabilities: [
|
|
3544
|
+
{ name: "kickoff", actions: ["create"], description: "Start a crew run with the given inputs. Returns kickoff_id." },
|
|
3545
|
+
{ name: "status", actions: ["get"], description: "Check progress of a running crew." },
|
|
3546
|
+
{ name: "get_inputs", actions: ["list"], description: "List the inputs a crew expects." },
|
|
3547
|
+
{ name: "resume", actions: ["create"], description: "Resume a paused run waiting on human input." },
|
|
3548
|
+
],
|
|
3549
|
+
endpoints: {
|
|
3550
|
+
kickoff: { method: "POST", path: "/kickoff", body: { inputs: {}, meta: {}, taskWebhookUrl: "", stepWebhookUrl: "", crewWebhookUrl: "" } },
|
|
3551
|
+
status: { method: "GET", path: "/status/{kickoffId}" },
|
|
3552
|
+
get_inputs: { method: "GET", path: "/inputs" },
|
|
3553
|
+
resume: { method: "POST", path: "/resume", body: { kickoff_id: "", task_outputs: {} } },
|
|
3554
|
+
},
|
|
3555
|
+
authHeader: (creds) => ({
|
|
3556
|
+
"Authorization": `Bearer ${creds.bearerToken}`,
|
|
3557
|
+
"Content-Type": "application/json",
|
|
3558
|
+
"Accept": "application/json",
|
|
3559
|
+
}),
|
|
3560
|
+
},
|
|
3561
|
+
|
|
3532
3562
|
// ============================================================
|
|
3533
3563
|
// v4.10.0 — 0nCore product surface (UCP, Marketplace, builders)
|
|
3534
3564
|
// Each wraps the corresponding onork-app HTTP endpoint.
|
package/lib/badges.json
CHANGED
|
@@ -2,31 +2,31 @@
|
|
|
2
2
|
"tools": {
|
|
3
3
|
"schemaVersion": 1,
|
|
4
4
|
"label": "tools",
|
|
5
|
-
"message": "
|
|
5
|
+
"message": "1324",
|
|
6
6
|
"color": "00ff88"
|
|
7
7
|
},
|
|
8
8
|
"services": {
|
|
9
9
|
"schemaVersion": 1,
|
|
10
10
|
"label": "services",
|
|
11
|
-
"message": "
|
|
11
|
+
"message": "106",
|
|
12
12
|
"color": "00d4ff"
|
|
13
13
|
},
|
|
14
14
|
"actions": {
|
|
15
15
|
"schemaVersion": 1,
|
|
16
16
|
"label": "actions",
|
|
17
|
-
"message": "
|
|
17
|
+
"message": "234",
|
|
18
18
|
"color": "ff6b35"
|
|
19
19
|
},
|
|
20
20
|
"triggers": {
|
|
21
21
|
"schemaVersion": 1,
|
|
22
22
|
"label": "triggers",
|
|
23
|
-
"message": "
|
|
23
|
+
"message": "328",
|
|
24
24
|
"color": "9945ff"
|
|
25
25
|
},
|
|
26
26
|
"total": {
|
|
27
27
|
"schemaVersion": 1,
|
|
28
28
|
"label": "capabilities",
|
|
29
|
-
"message": "
|
|
29
|
+
"message": "2160",
|
|
30
30
|
"color": "00ff88"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/lib/catalog.json
CHANGED
|
@@ -103,6 +103,10 @@
|
|
|
103
103
|
"ai-builder": {
|
|
104
104
|
"name": "ai builder",
|
|
105
105
|
"description": ""
|
|
106
|
+
},
|
|
107
|
+
"ai-agents": {
|
|
108
|
+
"name": "ai agents",
|
|
109
|
+
"description": "Multi-agent orchestration"
|
|
106
110
|
}
|
|
107
111
|
},
|
|
108
112
|
"services": [
|
|
@@ -3242,6 +3246,27 @@
|
|
|
3242
3246
|
"agentic_plan_completed",
|
|
3243
3247
|
"agentic_plan_failed"
|
|
3244
3248
|
]
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"id": "crewai",
|
|
3252
|
+
"name": "CrewAI",
|
|
3253
|
+
"category": "ai-agents",
|
|
3254
|
+
"description": "Multi-agent orchestration via CrewAI Enterprise. 50 free runs/month per account.",
|
|
3255
|
+
"tools": [
|
|
3256
|
+
"crewai_kickoff",
|
|
3257
|
+
"crewai_status",
|
|
3258
|
+
"crewai_get_inputs",
|
|
3259
|
+
"crewai_resume"
|
|
3260
|
+
],
|
|
3261
|
+
"actions": [
|
|
3262
|
+
"crew_run_completed",
|
|
3263
|
+
"crew_paused",
|
|
3264
|
+
"crew_resumed"
|
|
3265
|
+
],
|
|
3266
|
+
"triggers": [
|
|
3267
|
+
"crew_run_completed",
|
|
3268
|
+
"crew_run_failed"
|
|
3269
|
+
]
|
|
3245
3270
|
}
|
|
3246
3271
|
]
|
|
3247
3272
|
}
|
package/lib/stats.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-04-
|
|
2
|
+
"generated": "2026-04-28T21:09:58.537Z",
|
|
3
3
|
"catalogVersion": "3.10.0",
|
|
4
|
-
"services":
|
|
5
|
-
"tools":
|
|
6
|
-
"actions":
|
|
7
|
-
"triggers":
|
|
8
|
-
"categories":
|
|
4
|
+
"services": 106,
|
|
5
|
+
"tools": 1324,
|
|
6
|
+
"actions": 234,
|
|
7
|
+
"triggers": 328,
|
|
8
|
+
"categories": 25,
|
|
9
9
|
"perService": {
|
|
10
10
|
"crm": {
|
|
11
11
|
"name": "CRM",
|
|
@@ -846,6 +846,14 @@
|
|
|
846
846
|
"actions": 3,
|
|
847
847
|
"triggers": 2,
|
|
848
848
|
"total": 8
|
|
849
|
+
},
|
|
850
|
+
"crewai": {
|
|
851
|
+
"name": "CrewAI",
|
|
852
|
+
"category": "ai-agents",
|
|
853
|
+
"tools": 4,
|
|
854
|
+
"actions": 3,
|
|
855
|
+
"triggers": 2,
|
|
856
|
+
"total": 9
|
|
849
857
|
}
|
|
850
858
|
},
|
|
851
859
|
"perCategory": {
|
|
@@ -1016,6 +1024,13 @@
|
|
|
1016
1024
|
"tools": 25,
|
|
1017
1025
|
"actions": 14,
|
|
1018
1026
|
"triggers": 9
|
|
1027
|
+
},
|
|
1028
|
+
"ai-agents": {
|
|
1029
|
+
"label": "ai-agents",
|
|
1030
|
+
"services": 1,
|
|
1031
|
+
"tools": 4,
|
|
1032
|
+
"actions": 3,
|
|
1033
|
+
"triggers": 2
|
|
1019
1034
|
}
|
|
1020
1035
|
},
|
|
1021
1036
|
"allTools": [
|
|
@@ -2338,7 +2353,11 @@
|
|
|
2338
2353
|
"website_builder_deploy_page",
|
|
2339
2354
|
"agentic_automation_generate_plan",
|
|
2340
2355
|
"agentic_automation_execute_plan",
|
|
2341
|
-
"agentic_automation_iterate_plan"
|
|
2356
|
+
"agentic_automation_iterate_plan",
|
|
2357
|
+
"crewai_kickoff",
|
|
2358
|
+
"crewai_status",
|
|
2359
|
+
"crewai_get_inputs",
|
|
2360
|
+
"crewai_resume"
|
|
2342
2361
|
],
|
|
2343
2362
|
"allActions": [
|
|
2344
2363
|
"crm_sync",
|
|
@@ -2571,7 +2590,10 @@
|
|
|
2571
2590
|
"page_deployed",
|
|
2572
2591
|
"plan_generated",
|
|
2573
2592
|
"plan_executed",
|
|
2574
|
-
"plan_iterated"
|
|
2593
|
+
"plan_iterated",
|
|
2594
|
+
"crew_run_completed",
|
|
2595
|
+
"crew_paused",
|
|
2596
|
+
"crew_resumed"
|
|
2575
2597
|
],
|
|
2576
2598
|
"allTriggers": [
|
|
2577
2599
|
"contact_created",
|
|
@@ -2899,7 +2921,9 @@
|
|
|
2899
2921
|
"app_publish_completed",
|
|
2900
2922
|
"page_deploy_completed",
|
|
2901
2923
|
"agentic_plan_completed",
|
|
2902
|
-
"agentic_plan_failed"
|
|
2924
|
+
"agentic_plan_failed",
|
|
2925
|
+
"crew_run_completed",
|
|
2926
|
+
"crew_run_failed"
|
|
2903
2927
|
],
|
|
2904
2928
|
"allServiceIds": [
|
|
2905
2929
|
"crm",
|
|
@@ -3006,7 +3030,8 @@
|
|
|
3006
3030
|
"saas_factory",
|
|
3007
3031
|
"app_builder",
|
|
3008
3032
|
"website_builder",
|
|
3009
|
-
"agentic_automation"
|
|
3033
|
+
"agentic_automation",
|
|
3034
|
+
"crewai"
|
|
3010
3035
|
],
|
|
3011
3036
|
"crmTools": 245,
|
|
3012
3037
|
"vaultTools": 4,
|
|
@@ -3014,6 +3039,6 @@
|
|
|
3014
3039
|
"deedTools": 6,
|
|
3015
3040
|
"engineTools": 6,
|
|
3016
3041
|
"appTools": 5,
|
|
3017
|
-
"totalTools":
|
|
3018
|
-
"totalCapabilities":
|
|
3042
|
+
"totalTools": 1598,
|
|
3043
|
+
"totalCapabilities": 2160
|
|
3019
3044
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "0nmcp",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.11.0",
|
|
4
4
|
"mcpName": "io.github.0nork/0nMCP",
|
|
5
|
-
"description": "Universal AI API Orchestrator — 1,
|
|
5
|
+
"description": "Universal AI API Orchestrator — 1,598 tools across 106 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":
|
|
210
|
+
"tools": 1324,
|
|
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":
|
|
218
|
-
"services":
|
|
219
|
-
"actions":
|
|
220
|
-
"triggers":
|
|
221
|
-
"totalCapabilities":
|
|
222
|
-
"categories":
|
|
223
|
-
"lastUpdated": "2026-04-
|
|
217
|
+
"totalTools": 1598,
|
|
218
|
+
"services": 106,
|
|
219
|
+
"actions": 234,
|
|
220
|
+
"triggers": 328,
|
|
221
|
+
"totalCapabilities": 2160,
|
|
222
|
+
"categories": 25,
|
|
223
|
+
"lastUpdated": "2026-04-28T21:09:58.537Z"
|
|
224
224
|
}
|
|
225
225
|
}
|