0nmcp 1.2.1 → 1.3.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/README.md +94 -44
- package/catalog.js +300 -0
- package/crm/index.js +20 -1
- package/index.js +12 -3
- package/lib/badges.json +32 -0
- package/lib/catalog.json +813 -0
- package/lib/stats.js +123 -0
- package/lib/stats.json +795 -0
- package/package.json +40 -5
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "0nmcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"mcpName": "io.github.0nork/0nMCP",
|
|
5
|
-
"description": "Universal AI API Orchestrator —
|
|
5
|
+
"description": "Universal AI API Orchestrator — 290 tools, 26 services, natural language interface. The most comprehensive MCP server available. Free and open source from 0nORK.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"types": "types/index.d.ts",
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"./crm": {
|
|
24
24
|
"import": "./crm/index.js"
|
|
25
25
|
},
|
|
26
|
+
"./crm/*": {
|
|
27
|
+
"import": "./crm/*"
|
|
28
|
+
},
|
|
26
29
|
"./webhooks": {
|
|
27
30
|
"import": "./webhooks.js"
|
|
28
31
|
},
|
|
@@ -35,10 +38,20 @@
|
|
|
35
38
|
},
|
|
36
39
|
"scripts": {
|
|
37
40
|
"start": "node index.js",
|
|
38
|
-
"test": "node --test"
|
|
41
|
+
"test": "node --test",
|
|
42
|
+
"stats": "node scripts/generate-stats.js --all",
|
|
43
|
+
"stats:badge": "node scripts/generate-stats.js --badge",
|
|
44
|
+
"prepublishOnly": "node scripts/generate-stats.js --all",
|
|
45
|
+
"preversion": "node scripts/generate-stats.js --all",
|
|
46
|
+
"postversion": "git push && git push --tags"
|
|
39
47
|
},
|
|
40
48
|
"publishConfig": {
|
|
41
|
-
"access": "public"
|
|
49
|
+
"access": "public",
|
|
50
|
+
"provenance": true
|
|
51
|
+
},
|
|
52
|
+
"funding": {
|
|
53
|
+
"type": "github",
|
|
54
|
+
"url": "https://github.com/sponsors/0nork"
|
|
42
55
|
},
|
|
43
56
|
"keywords": [
|
|
44
57
|
"mcp",
|
|
@@ -73,6 +86,18 @@
|
|
|
73
86
|
"social-media",
|
|
74
87
|
"webhooks",
|
|
75
88
|
"rate-limiting",
|
|
89
|
+
"gmail",
|
|
90
|
+
"google-sheets",
|
|
91
|
+
"google-drive",
|
|
92
|
+
"jira",
|
|
93
|
+
"zendesk",
|
|
94
|
+
"mailchimp",
|
|
95
|
+
"zoom",
|
|
96
|
+
"microsoft-365",
|
|
97
|
+
"outlook",
|
|
98
|
+
"teams",
|
|
99
|
+
"onedrive",
|
|
100
|
+
"mongodb",
|
|
76
101
|
"0n",
|
|
77
102
|
"0nork",
|
|
78
103
|
"0nmcp"
|
|
@@ -110,8 +135,18 @@
|
|
|
110
135
|
"crm/",
|
|
111
136
|
"webhooks.js",
|
|
112
137
|
"ratelimit.js",
|
|
138
|
+
"lib/",
|
|
113
139
|
"types/",
|
|
114
140
|
"README.md",
|
|
115
141
|
"LICENSE"
|
|
116
|
-
]
|
|
142
|
+
],
|
|
143
|
+
"0nmcp-stats": {
|
|
144
|
+
"tools": 290,
|
|
145
|
+
"services": 26,
|
|
146
|
+
"actions": 65,
|
|
147
|
+
"triggers": 93,
|
|
148
|
+
"totalCapabilities": 448,
|
|
149
|
+
"categories": 13,
|
|
150
|
+
"lastUpdated": "2026-02-12T03:44:42.336Z"
|
|
151
|
+
}
|
|
117
152
|
}
|