0nmcp 1.2.2 → 1.3.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 +94 -44
- package/catalog.js +300 -0
- 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 +797 -0
- package/package.json +44 -6
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "0nmcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"mcpName": "io.github.0nork/0nMCP",
|
|
5
|
-
"description": "Universal AI API Orchestrator —
|
|
5
|
+
"description": "Universal AI API Orchestrator — 535 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",
|
|
@@ -38,11 +38,20 @@
|
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"start": "node index.js",
|
|
41
|
-
"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"
|
|
42
47
|
},
|
|
43
48
|
"publishConfig": {
|
|
44
49
|
"access": "public"
|
|
45
50
|
},
|
|
51
|
+
"funding": {
|
|
52
|
+
"type": "github",
|
|
53
|
+
"url": "https://github.com/sponsors/0nork"
|
|
54
|
+
},
|
|
46
55
|
"keywords": [
|
|
47
56
|
"mcp",
|
|
48
57
|
"model-context-protocol",
|
|
@@ -76,6 +85,18 @@
|
|
|
76
85
|
"social-media",
|
|
77
86
|
"webhooks",
|
|
78
87
|
"rate-limiting",
|
|
88
|
+
"gmail",
|
|
89
|
+
"google-sheets",
|
|
90
|
+
"google-drive",
|
|
91
|
+
"jira",
|
|
92
|
+
"zendesk",
|
|
93
|
+
"mailchimp",
|
|
94
|
+
"zoom",
|
|
95
|
+
"microsoft-365",
|
|
96
|
+
"outlook",
|
|
97
|
+
"teams",
|
|
98
|
+
"onedrive",
|
|
99
|
+
"mongodb",
|
|
79
100
|
"0n",
|
|
80
101
|
"0nork",
|
|
81
102
|
"0nmcp"
|
|
@@ -100,8 +121,13 @@
|
|
|
100
121
|
"dependencies": {
|
|
101
122
|
"@modelcontextprotocol/sdk": "^1.26.0"
|
|
102
123
|
},
|
|
103
|
-
"
|
|
104
|
-
"@anthropic-ai/sdk": "
|
|
124
|
+
"peerDependencies": {
|
|
125
|
+
"@anthropic-ai/sdk": ">=0.30.0"
|
|
126
|
+
},
|
|
127
|
+
"peerDependenciesMeta": {
|
|
128
|
+
"@anthropic-ai/sdk": {
|
|
129
|
+
"optional": true
|
|
130
|
+
}
|
|
105
131
|
},
|
|
106
132
|
"files": [
|
|
107
133
|
"index.js",
|
|
@@ -113,8 +139,20 @@
|
|
|
113
139
|
"crm/",
|
|
114
140
|
"webhooks.js",
|
|
115
141
|
"ratelimit.js",
|
|
142
|
+
"lib/",
|
|
116
143
|
"types/",
|
|
117
144
|
"README.md",
|
|
118
145
|
"LICENSE"
|
|
119
|
-
]
|
|
146
|
+
],
|
|
147
|
+
"0nmcp-stats": {
|
|
148
|
+
"tools": 290,
|
|
149
|
+
"crmTools": 245,
|
|
150
|
+
"totalTools": 535,
|
|
151
|
+
"services": 26,
|
|
152
|
+
"actions": 65,
|
|
153
|
+
"triggers": 93,
|
|
154
|
+
"totalCapabilities": 693,
|
|
155
|
+
"categories": 13,
|
|
156
|
+
"lastUpdated": "2026-02-12T04:15:16.550Z"
|
|
157
|
+
}
|
|
120
158
|
}
|