0nmcp 1.7.0 → 2.1.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 +113 -48
- package/cli.js +705 -1
- package/command-runner.js +224 -0
- package/commands.js +115 -0
- package/index.js +15 -1
- package/lib/stats.json +1 -1
- package/package.json +42 -3
- package/vault/container.js +479 -0
- package/vault/crypto-container.js +278 -0
- package/vault/deed-collector.js +286 -0
- package/vault/deed-importer.js +277 -0
- package/vault/deed.js +319 -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/vault/tools-deed.js +257 -0
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
|
+
**564 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) · [564 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
|
-
> **
|
|
35
|
+
> **v2.1.0** — 564 tools across 26 services in 13 categories. 714 total capabilities. Now with **Business Deed Transfer** (package + escrow + transfer entire digital businesses), **0nVault Containers** (Patent Pending #63/990,046 — 7 semantic layers, multi-party escrow, Seal of Truth), **Application Engine**, **Workflow Runtime** + **HTTP Server**, and **portable AI Brain bundles**. [See what's new](#-whats-new-in-v21).
|
|
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. 564 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,42 @@ 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
|
+
**564 total tools.** Universal orchestration (290 catalog tools across 26 services) + the most comprehensive CRM integration in the MCP ecosystem (245 dedicated tools) + Vault (4 tools) + Vault Containers (8 tools) + Business Deed Transfer (6 tools) + Engine (6 tools) + App Builder (5 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
|
|
276
|
+
## What's New in v2.1
|
|
277
277
|
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
- **
|
|
281
|
-
-
|
|
282
|
-
-
|
|
283
|
-
-
|
|
284
|
-
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
278
|
+
### v2.1.0 — Business Deed Transfer System
|
|
279
|
+
|
|
280
|
+
- **6 new tools**: `deed_create`, `deed_open`, `deed_inspect`, `deed_verify`, `deed_accept`, `deed_import`
|
|
281
|
+
- Package entire business digital assets into encrypted `.0nv` containers
|
|
282
|
+
- Chain of custody tracking with transfer history in audit_trail layer
|
|
283
|
+
- Auto-detection of credentials from .env/JSON/CSV via engine mapper
|
|
284
|
+
- Lifecycle: **CREATE → PACKAGE → ESCROW → ACCEPT → IMPORT → FLIP**
|
|
285
|
+
|
|
286
|
+
### v2.0.0 — 0nVault Container System (Patent Pending #63/990,046)
|
|
287
|
+
|
|
288
|
+
- **8 new tools**: `vault_container_create/open/inspect/verify` + `escrow_create/escrow_unwrap/transfer/revoke`
|
|
289
|
+
- **7 semantic layers**: workflows, credentials, env_vars, mcp_configs, site_profiles, ai_brain, audit_trail
|
|
290
|
+
- Argon2id double-encryption for credential layer
|
|
291
|
+
- X25519 ECDH multi-party escrow (up to 8 parties, per-layer access matrix)
|
|
292
|
+
- **Seal of Truth**: SHA3-256 content-addressed integrity verification
|
|
293
|
+
- Ed25519 digital signatures, binary `.0nv` container format
|
|
294
|
+
- Transfer registry with replay prevention
|
|
295
|
+
- **Application Engine** — build, distribute, inspect, schedule `.0n` applications
|
|
296
|
+
|
|
297
|
+
### v1.7.0 — Foundation
|
|
298
|
+
|
|
299
|
+
- 550 tools across 26 services in 13 categories — 708 total capabilities
|
|
300
|
+
- **.0n Conversion Engine** — import credentials, auto-map to 26 services, generate configs for 7 AI platforms
|
|
301
|
+
- **Vault** — machine-bound encrypted credential storage (AES-256-GCM + PBKDF2-SHA512 + hardware fingerprint)
|
|
302
|
+
- **Workflow Runtime** + **HTTP Server** + **CLI with named runs**
|
|
303
|
+
- **Three-Level Execution** (Patent Pending) — Pipeline → Assembly Line → Radial Burst
|
|
304
|
+
|
|
305
|
+
> **564 tools. 26 services. 714 total capabilities.** See [CHANGELOG.md](CHANGELOG.md) for full version history.
|
|
288
306
|
|
|
289
307
|
---
|
|
290
308
|
|
|
@@ -323,7 +341,7 @@ The orchestrator uses keyword matching to route tasks to the right service. Less
|
|
|
323
341
|
| **Flexibility** | Say what you want | Triggers/actions only | Unlimited but complex |
|
|
324
342
|
| **Maintenance** | Zero | Update broken zaps | Fix API changes |
|
|
325
343
|
| **Open source** | Yes (MIT) | No | Depends |
|
|
326
|
-
| **Tools available** |
|
|
344
|
+
| **Tools available** | 564 | Varies | Whatever you build |
|
|
327
345
|
|
|
328
346
|
---
|
|
329
347
|
|
|
@@ -374,32 +392,62 @@ Every task execution is logged to `~/.0n/history/` as JSONL — full audit trail
|
|
|
374
392
|
|
|
375
393
|
```
|
|
376
394
|
0nMCP/
|
|
377
|
-
├── index.js
|
|
378
|
-
├── catalog.js
|
|
379
|
-
├── connections.js
|
|
380
|
-
├── orchestrator.js
|
|
381
|
-
├──
|
|
382
|
-
├──
|
|
383
|
-
├──
|
|
384
|
-
├──
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
│ ├──
|
|
389
|
-
│ ├──
|
|
390
|
-
│ ├──
|
|
391
|
-
│ ├──
|
|
392
|
-
│ ├──
|
|
393
|
-
│ ├──
|
|
394
|
-
│ ├──
|
|
395
|
-
│ ├──
|
|
396
|
-
│ ├──
|
|
397
|
-
│ ├──
|
|
398
|
-
│
|
|
395
|
+
├── index.js # Entry point — MCP server startup
|
|
396
|
+
├── catalog.js # Service catalog — 26 integrations with endpoints
|
|
397
|
+
├── connections.js # Connection manager — ~/.0n/connections/*.0n
|
|
398
|
+
├── orchestrator.js # AI execution planner — the brain
|
|
399
|
+
├── workflow.js # WorkflowRunner — .0n file execution
|
|
400
|
+
├── server.js # Express HTTP server — MCP over HTTP + webhooks
|
|
401
|
+
├── webhooks.js # Webhook receiver and HMAC verification
|
|
402
|
+
├── ratelimit.js # Per-service rate limiting with retry
|
|
403
|
+
├── tools.js # Tool registration for catalog + engine tools
|
|
404
|
+
├── cli.js # CLI — 39KB, all commands
|
|
405
|
+
├── crm/ # 245 CRM tools across 12 modules
|
|
406
|
+
│ ├── index.js # Tool orchestrator — registers all modules
|
|
407
|
+
│ ├── helpers.js # Data-driven tool factory — registerTools()
|
|
408
|
+
│ ├── auth.js # OAuth, tokens, snapshots, workflows (5 tools)
|
|
409
|
+
│ ├── contacts.js # Contact management (23 tools)
|
|
410
|
+
│ ├── conversations.js # Messaging — SMS, Email, WhatsApp, IG, FB (13 tools)
|
|
411
|
+
│ ├── calendars.js # Calendar & scheduling (27 tools)
|
|
412
|
+
│ ├── opportunities.js # Pipeline & deal management (14 tools)
|
|
413
|
+
│ ├── invoices.js # Invoicing (20 tools)
|
|
414
|
+
│ ├── payments.js # Payment processing (16 tools)
|
|
415
|
+
│ ├── products.js # Product catalog (10 tools)
|
|
416
|
+
│ ├── locations.js # Location management (24 tools)
|
|
417
|
+
│ ├── social.js # Social media & blogs (35 tools)
|
|
418
|
+
│ ├── users.js # User & form management (24 tools)
|
|
419
|
+
│ └── objects.js # Custom objects & associations (34 tools)
|
|
420
|
+
├── vault/ # Encrypted credential storage + containers
|
|
421
|
+
│ ├── index.js # Vault entry — seal/unseal/verify/fingerprint (4 tools)
|
|
422
|
+
│ ├── container.js # 0nVault Container orchestrator
|
|
423
|
+
│ ├── crypto-container.js # AES-256-GCM + Argon2id encryption
|
|
424
|
+
│ ├── layers.js # 7 semantic layers
|
|
425
|
+
│ ├── escrow.js # X25519 ECDH multi-party escrow
|
|
426
|
+
│ ├── seal.js # Seal of Truth — SHA3-256 integrity
|
|
427
|
+
│ ├── registry.js # Transfer registry with replay prevention
|
|
428
|
+
│ ├── tools-container.js # 8 vault container tools
|
|
429
|
+
│ ├── deed.js # Business Deed Transfer core
|
|
430
|
+
│ ├── deed-collector.js # Asset collection from .env/JSON/CSV
|
|
431
|
+
│ ├── deed-importer.js # Import deeds into .0n ecosystem
|
|
432
|
+
│ ├── tools-deed.js # 6 deed transfer tools
|
|
433
|
+
│ └── cache.js # Vault cache layer
|
|
434
|
+
├── engine/ # .0n Conversion Engine + App Builder
|
|
435
|
+
│ ├── index.js # Engine entry — 6 tools
|
|
436
|
+
│ ├── parser.js # Multi-format credential parser
|
|
437
|
+
│ ├── mapper.js # Auto-map credentials to 26 services
|
|
438
|
+
│ ├── validator.js # API key verification
|
|
439
|
+
│ ├── platforms.js # 7 AI platform config generators
|
|
440
|
+
│ ├── bundler.js # Portable .0n bundle creator
|
|
441
|
+
│ ├── cipher-portable.js # Passphrase-only AES-256-GCM
|
|
442
|
+
│ ├── application.js # Application Engine core
|
|
443
|
+
│ ├── app-builder.js # App builder
|
|
444
|
+
│ ├── app-server.js # App HTTP middleware
|
|
445
|
+
│ ├── operations.js # App operations
|
|
446
|
+
│ └── scheduler.js # CronScheduler class
|
|
399
447
|
├── types/
|
|
400
|
-
│ └── index.d.ts
|
|
448
|
+
│ └── index.d.ts # Full TypeScript definitions
|
|
401
449
|
├── package.json
|
|
402
|
-
├── LICENSE
|
|
450
|
+
├── LICENSE # MIT
|
|
403
451
|
└── CONTRIBUTING.md
|
|
404
452
|
```
|
|
405
453
|
|
|
@@ -409,8 +457,15 @@ Every task execution is logged to `~/.0n/history/` as JSONL — full audit trail
|
|
|
409
457
|
| **Connection Manager** | Stores credentials as `.0n` files in `~/.0n/connections/` per the .0n standard |
|
|
410
458
|
| **Orchestrator** | The brain — parses natural language, plans multi-step execution, calls APIs, chains data |
|
|
411
459
|
| **CRM Modules** | 245 tools across 12 modules — data-driven, every tool is config not code |
|
|
460
|
+
| **Vault** | Machine-bound encrypted credential storage — AES-256-GCM + PBKDF2-SHA512 |
|
|
461
|
+
| **Vault Container System** | Patent Pending #63/990,046 — 7 semantic layers, multi-party escrow, Seal of Truth, binary .0nv format |
|
|
462
|
+
| **Business Deed Transfer** | Package + escrow + transfer entire digital businesses in encrypted containers |
|
|
463
|
+
| **Conversion Engine** | Import credentials from .env/CSV/JSON, auto-map to 26 services, generate 7 AI platform configs |
|
|
464
|
+
| **Application Engine** | Build, distribute, schedule .0n applications with CronScheduler + HTTP middleware |
|
|
465
|
+
| **Workflow Runtime** | Load and execute `.0n` workflow files with template engine, conditions, and step chaining |
|
|
466
|
+
| **HTTP Server** | Express-based REST API, MCP over HTTP, and webhook receivers |
|
|
412
467
|
| **Rate Limiter** | Per-service rate limits with automatic retry and backoff |
|
|
413
|
-
| **Webhook Handler** |
|
|
468
|
+
| **Webhook Handler** | HMAC-verified event processing — Stripe, CRM, Slack, GitHub, Twilio, Shopify |
|
|
414
469
|
| **Execution History** | Logs every task to `~/.0n/history/` as JSONL — full audit trail |
|
|
415
470
|
| **TypeScript Defs** | Full type coverage for all exports, connections, workflows, and tools |
|
|
416
471
|
|
|
@@ -426,6 +481,16 @@ Every task execution is logged to `~/.0n/history/` as JSONL — full audit trail
|
|
|
426
481
|
- **Execution history** — Full audit trail in `~/.0n/history/`
|
|
427
482
|
- **Open source** — Audit every line yourself
|
|
428
483
|
|
|
484
|
+
### 0nVault Container Security (Patent Pending)
|
|
485
|
+
- **AES-256-GCM** encryption for all container layers
|
|
486
|
+
- **Argon2id** double-encryption for credential layer (memory-hard, side-channel resistant)
|
|
487
|
+
- **Ed25519** digital signatures for container authenticity
|
|
488
|
+
- **Seal of Truth** — SHA3-256 content-addressed integrity verification
|
|
489
|
+
- **X25519 ECDH** multi-party escrow — up to 8 parties with per-layer access matrix
|
|
490
|
+
- **Binary .0nv format** — magic bytes `0x304E5350`, tamper-evident structure
|
|
491
|
+
- **Transfer registry** — replay prevention with chain of custody tracking
|
|
492
|
+
- **Machine-bound vault** — PBKDF2-SHA512 (100K iterations) + hardware fingerprint binding
|
|
493
|
+
|
|
429
494
|
See [SECURITY.md](SECURITY.md) for our security policy and how to report vulnerabilities.
|
|
430
495
|
|
|
431
496
|
---
|
|
@@ -505,7 +570,7 @@ The tool factory handles registration, validation, API calls, error handling —
|
|
|
505
570
|
|
|
506
571
|
### Phase 0 — Foundation (Current)
|
|
507
572
|
|
|
508
|
-
- [x] **26 services,
|
|
573
|
+
- [x] **26 services, 564 tools, 13 categories**
|
|
509
574
|
- [x] Core orchestration engine with AI planning
|
|
510
575
|
- [x] **245 CRM tools** — full API coverage across 12 modules
|
|
511
576
|
- [x] Gmail, Google Sheets, Google Drive, Jira, Zendesk, Mailchimp, Zoom, Microsoft 365, MongoDB
|
|
@@ -588,7 +653,7 @@ We ship weekly. The codebase is active. The community is real. If you're buildin
|
|
|
588
653
|
|
|
589
654
|
| Metric | |
|
|
590
655
|
|--------|---|
|
|
591
|
-
| **Tools shipped** |
|
|
656
|
+
| **Tools shipped** | 564 |
|
|
592
657
|
| **Services integrated** | 26 |
|
|
593
658
|
| **Categories** | 13 |
|
|
594
659
|
| **CRM endpoints covered** | 245 / 245 (100%) |
|
|
@@ -639,7 +704,7 @@ node index.js
|
|
|
639
704
|
|
|
640
705
|
| Project | Description |
|
|
641
706
|
|---------|-------------|
|
|
642
|
-
| **[0nMCP](https://github.com/0nork/0nMCP)** | Universal AI API Orchestrator —
|
|
707
|
+
| **[0nMCP](https://github.com/0nork/0nMCP)** | Universal AI API Orchestrator — 564 tools, 26 services, Vault encryption, Business Deed transfer |
|
|
643
708
|
| **[0n-spec](https://github.com/0nork/0n-spec)** | The .0n Standard — universal configuration format for AI orchestration |
|
|
644
709
|
| **[0nork](https://github.com/0nork/0nork)** | The parent org — AI orchestration infrastructure |
|
|
645
710
|
|
|
@@ -654,7 +719,7 @@ node index.js
|
|
|
654
719
|
|
|
655
720
|
<div align="center">
|
|
656
721
|
|
|
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-%
|
|
722
|
+
**[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-%20564%20tools,%2026%20services,%20zero%20config.%20The%20universal%20AI%20API%20orchestrator.%20Free%20and%20open%20source.&url=https://github.com/0nork/0nMCP)**
|
|
658
723
|
|
|
659
724
|
</div>
|
|
660
725
|
|
|
@@ -664,7 +729,7 @@ node index.js
|
|
|
664
729
|
|
|
665
730
|
### Stop building workflows. Start describing outcomes.
|
|
666
731
|
|
|
667
|
-
**
|
|
732
|
+
**564 tools. 26 services. Zero config. MIT licensed. Community driven.**
|
|
668
733
|
|
|
669
734
|
**[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
735
|
|