0nmcp 1.6.0 → 2.0.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 +24 -23
- package/cli.js +667 -1
- package/command-runner.js +224 -0
- package/commands.js +115 -0
- package/connections.js +3 -1
- package/engine/app-builder.js +318 -0
- package/engine/app-server.js +471 -0
- package/engine/application.js +205 -0
- package/engine/bundler.js +13 -0
- package/engine/index.js +281 -3
- package/engine/operations.js +227 -0
- package/engine/scheduler.js +270 -0
- package/index.js +8 -1
- package/lib/badges.json +1 -1
- package/lib/stats.json +4 -3
- package/package.json +45 -6
- package/server.js +2 -2
- package/vault/container.js +479 -0
- package/vault/crypto-container.js +278 -0
- package/vault/escrow.js +227 -0
- package/vault/layers.js +254 -0
- package/vault/registry.js +159 -0
- package/vault/seal.js +74 -0
- package/vault/tools-container.js +356 -0
- package/workflow.js +36 -4
package/README.md
CHANGED
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
[](https://modelcontextprotocol.io)
|
|
21
21
|
[](http://makeapullrequest.com)
|
|
22
22
|
[](#-supported-services)
|
|
23
|
-
[](#-all-tools)
|
|
24
24
|
[](#-community)
|
|
25
25
|
[](https://github.com/0nork/0nMCP/discussions)
|
|
26
26
|
|
|
27
|
-
**
|
|
27
|
+
**550 tools. 26 services. Zero configuration. One natural language interface.**
|
|
28
28
|
|
|
29
|
-
[Quick Start](#-installation) · [Services](#-supported-services) · [
|
|
29
|
+
[Quick Start](#-installation) · [Services](#-supported-services) · [550 Tools](#-all-tools) · [.0n Standard](#-the-0n-standard) · [Unlocks](#-unlocks) · [Community](#-community) · [Contributing](#-contributing)
|
|
30
30
|
|
|
31
31
|
</div>
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
35
|
-
> **v1.
|
|
35
|
+
> **v1.7.0** — 550 tools across 26 services in 13 categories. Now with the **.0n Conversion Engine** (portable AI Brain bundles), **Vault** (machine-bound encrypted credential storage), **Application Engine** (build + distribute .0n apps), **Workflow Runtime** + **HTTP Server**, and a **CLI with named runs**. [See what's new](#-whats-new-in-v17).
|
|
36
36
|
|
|
37
37
|
---
|
|
38
38
|
|
|
@@ -157,7 +157,7 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (Mac) o
|
|
|
157
157
|
| **MongoDB** | Database | Find, insert, update, delete, aggregate documents via Atlas Data API |
|
|
158
158
|
| **CRM** | CRM | **245 tools** — contacts, conversations, calendars, invoices, payments, products, pipelines, social media, custom objects, and more |
|
|
159
159
|
|
|
160
|
-
**26 services.
|
|
160
|
+
**26 services. 550 tools. 13 categories. One interface.**
|
|
161
161
|
|
|
162
162
|
> **More coming:** QuickBooks, Asana, Intercom, AWS S3, Vercel, Cloudflare, Firebase, Figma...
|
|
163
163
|
|
|
@@ -267,24 +267,25 @@ The deepest CRM integration available in any MCP server. 245 tools across 12 mod
|
|
|
267
267
|
| **Users** | 24 | Users, forms, surveys, funnels, media, companies, businesses |
|
|
268
268
|
| **Objects** | 34 | Custom objects, associations, email, workflows, snapshots, links, campaigns, courses, SaaS |
|
|
269
269
|
|
|
270
|
-
**
|
|
270
|
+
**550 total tools.** Universal orchestration (290 catalog tools across 26 services) + the most comprehensive CRM integration in the MCP ecosystem (245 dedicated tools).
|
|
271
271
|
|
|
272
272
|
> Every CRM tool is data-driven — defined as configuration, not code. Adding new endpoints takes minutes, not hours. See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
273
273
|
|
|
274
274
|
---
|
|
275
275
|
|
|
276
|
-
## What's New in v1.
|
|
277
|
-
|
|
278
|
-
- **26 services
|
|
279
|
-
-
|
|
280
|
-
- **
|
|
281
|
-
- **
|
|
276
|
+
## What's New in v1.7
|
|
277
|
+
|
|
278
|
+
- **550 tools across 26 services** in 13 categories — 708 total capabilities
|
|
279
|
+
- **.0n Conversion Engine** — import credentials from .env/CSV/JSON, auto-map to 26 services, verify API keys, generate configs for 7 AI platforms (Claude Desktop, Cursor, Windsurf, Gemini, Continue, Cline, OpenAI)
|
|
280
|
+
- **Vault** — machine-bound encrypted credential storage (AES-256-GCM + PBKDF2-SHA512 + hardware fingerprint)
|
|
281
|
+
- **Application Engine** — build, distribute, inspect, and validate portable .0n application bundles
|
|
282
|
+
- **Workflow Runtime** — load and execute `.0n` workflow files with template engine, conditions, and step chaining
|
|
283
|
+
- **HTTP Server** — Express-based REST API, MCP over HTTP, and webhook receivers
|
|
284
|
+
- **Named Runs / Hotkeys** — define command aliases in your SWITCH file, run them as `0nmcp launch`, `0nmcp hello`
|
|
285
|
+
- **Interactive Shell** — `0nmcp shell` starts a REPL for `/command` execution
|
|
286
|
+
- **Portable encryption** — passphrase-only AES-256-GCM (no machine fingerprint, works anywhere)
|
|
282
287
|
- **245 CRM tools** — full API coverage across 12 modules
|
|
283
|
-
- **
|
|
284
|
-
- **Rate limiting** — built-in per-service rate limits with automatic retry
|
|
285
|
-
- **Webhook support** — receive and process external events
|
|
286
|
-
- **TypeScript definitions** — full type coverage for all exports
|
|
287
|
-
- **CLI improvements** — interactive setup, legacy migration, colored output
|
|
288
|
+
- **Three-Level Execution** (Patent Pending) — Pipeline → Assembly Line → Radial Burst
|
|
288
289
|
|
|
289
290
|
---
|
|
290
291
|
|
|
@@ -323,7 +324,7 @@ The orchestrator uses keyword matching to route tasks to the right service. Less
|
|
|
323
324
|
| **Flexibility** | Say what you want | Triggers/actions only | Unlimited but complex |
|
|
324
325
|
| **Maintenance** | Zero | Update broken zaps | Fix API changes |
|
|
325
326
|
| **Open source** | Yes (MIT) | No | Depends |
|
|
326
|
-
| **Tools available** |
|
|
327
|
+
| **Tools available** | 550 | Varies | Whatever you build |
|
|
327
328
|
|
|
328
329
|
---
|
|
329
330
|
|
|
@@ -505,7 +506,7 @@ The tool factory handles registration, validation, API calls, error handling —
|
|
|
505
506
|
|
|
506
507
|
### Phase 0 — Foundation (Current)
|
|
507
508
|
|
|
508
|
-
- [x] **26 services,
|
|
509
|
+
- [x] **26 services, 550 tools, 13 categories**
|
|
509
510
|
- [x] Core orchestration engine with AI planning
|
|
510
511
|
- [x] **245 CRM tools** — full API coverage across 12 modules
|
|
511
512
|
- [x] Gmail, Google Sheets, Google Drive, Jira, Zendesk, Mailchimp, Zoom, Microsoft 365, MongoDB
|
|
@@ -588,7 +589,7 @@ We ship weekly. The codebase is active. The community is real. If you're buildin
|
|
|
588
589
|
|
|
589
590
|
| Metric | |
|
|
590
591
|
|--------|---|
|
|
591
|
-
| **Tools shipped** |
|
|
592
|
+
| **Tools shipped** | 550 |
|
|
592
593
|
| **Services integrated** | 26 |
|
|
593
594
|
| **Categories** | 13 |
|
|
594
595
|
| **CRM endpoints covered** | 245 / 245 (100%) |
|
|
@@ -639,7 +640,7 @@ node index.js
|
|
|
639
640
|
|
|
640
641
|
| Project | Description |
|
|
641
642
|
|---------|-------------|
|
|
642
|
-
| **[0nMCP](https://github.com/0nork/0nMCP)** | Universal AI API Orchestrator —
|
|
643
|
+
| **[0nMCP](https://github.com/0nork/0nMCP)** | Universal AI API Orchestrator — 550 tools, 26 services, natural language interface |
|
|
643
644
|
| **[0n-spec](https://github.com/0nork/0n-spec)** | The .0n Standard — universal configuration format for AI orchestration |
|
|
644
645
|
| **[0nork](https://github.com/0nork/0nork)** | The parent org — AI orchestration infrastructure |
|
|
645
646
|
|
|
@@ -654,7 +655,7 @@ node index.js
|
|
|
654
655
|
|
|
655
656
|
<div align="center">
|
|
656
657
|
|
|
657
|
-
**[Sponsor on GitHub](https://github.com/sponsors/0nork)** · **[Star the repo](https://github.com/0nork/0nMCP)** · **[Tell a friend](https://twitter.com/intent/tweet?text=0nMCP%20-%
|
|
658
|
+
**[Sponsor on GitHub](https://github.com/sponsors/0nork)** · **[Star the repo](https://github.com/0nork/0nMCP)** · **[Tell a friend](https://twitter.com/intent/tweet?text=0nMCP%20-%20550%20tools,%2026%20services,%20zero%20config.%20The%20universal%20AI%20API%20orchestrator.%20Free%20and%20open%20source.&url=https://github.com/0nork/0nMCP)**
|
|
658
659
|
|
|
659
660
|
</div>
|
|
660
661
|
|
|
@@ -664,7 +665,7 @@ node index.js
|
|
|
664
665
|
|
|
665
666
|
### Stop building workflows. Start describing outcomes.
|
|
666
667
|
|
|
667
|
-
**
|
|
668
|
+
**550 tools. 26 services. Zero config. MIT licensed. Community driven.**
|
|
668
669
|
|
|
669
670
|
**[Get Started](https://github.com/0nork/0nMCP)** · **[Join the Community](https://0nmcp.com/community)** · **[Unlock Schedule](https://0nmcp.com/sponsor)** · **[Read the Docs](https://github.com/0nork/0n-spec)**
|
|
670
671
|
|