0nmcp 2.6.0 → 2.8.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 +233 -695
- package/cli.js +9 -1
- package/crm/objects.js +5 -69
- package/crm/users.js +5 -80
- package/engine/index.js +341 -2
- package/engine/multi-ai.js +525 -0
- package/engine/plugin-builder.js +578 -0
- package/engine/plugin-registry.js +419 -0
- package/engine/plugin.js +448 -0
- package/engine/sxo-writer.js +596 -0
- package/engine/training-feed.js +520 -0
- package/engine/training.js +875 -0
- package/index.js +10 -1
- package/lib/stats.json +1 -1
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -1,795 +1,333 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
██████╗ ███╗ ██╗███╗ ███╗ ██████╗██████╗
|
|
5
|
-
██╔═████╗████╗ ██║████╗ ████║██╔════╝██╔══██╗
|
|
6
|
-
██║██╔██║██╔██╗ ██║██╔████╔██║██║ ██████╔╝
|
|
7
|
-
████╔╝██║██║╚██╗██║██║╚██╔╝██║██║ ██╔═══╝
|
|
8
|
-
╚██████╔╝██║ ╚████║██║ ╚═╝ ██║╚██████╗██║
|
|
9
|
-
╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝ ╚═════╝╚═╝
|
|
10
|
-
```
|
|
3
|
+
# 0nMCP
|
|
11
4
|
|
|
12
|
-
|
|
5
|
+
### 945 Tools. 54 Services. One MCP Server.
|
|
13
6
|
|
|
14
|
-
|
|
7
|
+
**The most comprehensive MCP server available.**<br>
|
|
8
|
+
Connect any AI to any API. Natural language. Zero configuration. $0.01/run.
|
|
15
9
|
|
|
16
10
|
[](https://www.npmjs.com/package/0nmcp)
|
|
17
11
|
[](https://www.npmjs.com/package/0nmcp)
|
|
18
12
|
[](https://opensource.org/licenses/MIT)
|
|
19
13
|
[](https://nodejs.org)
|
|
20
14
|
[](https://modelcontextprotocol.io)
|
|
21
|
-
[](#-all-tools)
|
|
24
|
-
[](#-community)
|
|
25
|
-
[](https://0nmcp.com)
|
|
26
|
-
[](https://github.com/0nork/0nMCP/discussions)
|
|
27
|
-
|
|
28
|
-
**850 tools. 53 services. Zero configuration. One natural language interface.**
|
|
15
|
+
[](#tool-count-breakdown)
|
|
16
|
+
[](#all-54-services)
|
|
29
17
|
|
|
30
|
-
[Website](https://0nmcp.com)
|
|
18
|
+
[Website](https://0nmcp.com) · [Quick Start](#quick-start) · [All 54 Services](#all-54-services) · [MCP Config](#mcp-configuration) · [Community](https://0nmcp.com/community)
|
|
31
19
|
|
|
32
20
|
</div>
|
|
33
21
|
|
|
34
22
|
---
|
|
35
23
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
---
|
|
39
|
-
|
|
40
|
-
## The Problem
|
|
24
|
+
## Why 0nMCP?
|
|
41
25
|
|
|
42
|
-
|
|
26
|
+
- **One server, every API.** Stripe, Slack, GitHub, CRM, Shopify, OpenAI, Anthropic, Google, Microsoft, and 46 more services -- all through a single MCP server. No juggling 20 different integrations.
|
|
43
27
|
|
|
44
|
-
|
|
45
|
-
- Zapier ($50+/month) — and build complex zaps
|
|
46
|
-
- n8n/Make — and learn their visual builders
|
|
47
|
-
- Custom code — and maintain API integrations forever
|
|
28
|
+
- **Talk, don't code.** Say "Invoice john@acme.com for $500 and notify #sales on Slack" and it happens. 0nMCP resolves services, maps parameters, handles auth, and executes -- in under 2 seconds.
|
|
48
29
|
|
|
49
|
-
**
|
|
30
|
+
- **Production-grade security.** Patent-pending 0nVault containers with AES-256-GCM encryption, Argon2id key derivation, Ed25519 signatures, multi-party escrow, and a Seal of Truth integrity system. Your credentials never leave your machine.
|
|
50
31
|
|
|
51
32
|
---
|
|
52
33
|
|
|
53
|
-
##
|
|
34
|
+
## Quick Start
|
|
54
35
|
|
|
55
|
-
```
|
|
56
|
-
|
|
36
|
+
```bash
|
|
37
|
+
npm install -g 0nmcp
|
|
57
38
|
```
|
|
58
39
|
|
|
59
|
-
|
|
40
|
+
```bash
|
|
41
|
+
# Start MCP server (stdio mode for Claude Desktop / Cursor / Windsurf)
|
|
42
|
+
0nmcp
|
|
60
43
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
44
|
+
# Or start HTTP server
|
|
45
|
+
0nmcp serve --port 3000
|
|
46
|
+
|
|
47
|
+
# Import your API keys
|
|
48
|
+
0nmcp engine import
|
|
65
49
|
|
|
66
|
-
|
|
50
|
+
# Verify all connections
|
|
51
|
+
0nmcp engine verify
|
|
67
52
|
```
|
|
68
53
|
|
|
69
|
-
|
|
54
|
+
That's it. Your AI can now use 945 tools across 54 services.
|
|
70
55
|
|
|
71
56
|
---
|
|
72
57
|
|
|
73
|
-
##
|
|
58
|
+
## All 54 Services
|
|
59
|
+
|
|
60
|
+
### Communication (6)
|
|
61
|
+
| Service | Tools | What You Can Do |
|
|
62
|
+
|---------|-------|-----------------|
|
|
63
|
+
| **Slack** | Messaging | Send messages, manage channels, upload files |
|
|
64
|
+
| **Discord** | Messaging | Servers, channels, messages, webhooks |
|
|
65
|
+
| **Twilio** | SMS/Voice | Send SMS, make calls, manage numbers |
|
|
66
|
+
| **SendGrid** | Email | Transactional email, templates, contacts |
|
|
67
|
+
| **Gmail** | Email | Read/send email, labels, threads |
|
|
68
|
+
| **WhatsApp** | Messaging | Business messaging via Twilio |
|
|
69
|
+
|
|
70
|
+
### CRM & Sales (5)
|
|
71
|
+
| Service | Tools | What You Can Do |
|
|
72
|
+
|---------|-------|-----------------|
|
|
73
|
+
| **CRM** | 294 tools | Contacts, calendars, pipelines, invoices, payments, social, objects |
|
|
74
|
+
| **HubSpot** | CRM | Contacts, deals, companies, tickets |
|
|
75
|
+
| **Pipedrive** | CRM | Deals, persons, organizations, pipelines |
|
|
76
|
+
| **Intercom** | Support | Conversations, contacts, articles |
|
|
77
|
+
| **Zendesk** | Support | Tickets, users, organizations |
|
|
78
|
+
|
|
79
|
+
### Payments & Finance (4)
|
|
80
|
+
| Service | Tools | What You Can Do |
|
|
81
|
+
|---------|-------|-----------------|
|
|
82
|
+
| **Stripe** | Payments | Charges, subscriptions, invoices, customers |
|
|
83
|
+
| **Square** | POS | Payments, catalog, customers, orders |
|
|
84
|
+
| **Plaid** | Banking | Account linking, transactions, balances |
|
|
85
|
+
| **QuickBooks** | Accounting | Invoices, customers, payments, reports |
|
|
86
|
+
|
|
87
|
+
### Project Management (4)
|
|
88
|
+
| Service | Tools | What You Can Do |
|
|
89
|
+
|---------|-------|-----------------|
|
|
90
|
+
| **Jira** | Issues | Issues, projects, boards, sprints |
|
|
91
|
+
| **Asana** | Tasks | Tasks, projects, workspaces, sections |
|
|
92
|
+
| **Linear** | Issues | Issues, projects, teams, cycles |
|
|
93
|
+
| **Notion** | Workspace | Pages, databases, blocks, users |
|
|
94
|
+
|
|
95
|
+
### Data & Databases (4)
|
|
96
|
+
| Service | Tools | What You Can Do |
|
|
97
|
+
|---------|-------|-----------------|
|
|
98
|
+
| **Supabase** | Database | Tables, auth, storage, edge functions |
|
|
99
|
+
| **MongoDB** | Database | Collections, documents, aggregation |
|
|
100
|
+
| **Airtable** | Database | Bases, tables, records, views |
|
|
101
|
+
| **Google Sheets** | Spreadsheets | Read/write cells, create sheets |
|
|
102
|
+
|
|
103
|
+
### AI & ML (2)
|
|
104
|
+
| Service | Tools | What You Can Do |
|
|
105
|
+
|---------|-------|-----------------|
|
|
106
|
+
| **OpenAI** | AI | Completions, embeddings, images, assistants |
|
|
107
|
+
| **Anthropic** | AI | Messages, completions, streaming |
|
|
108
|
+
|
|
109
|
+
### Developer Tools (3)
|
|
110
|
+
| Service | Tools | What You Can Do |
|
|
111
|
+
|---------|-------|-----------------|
|
|
112
|
+
| **GitHub** | Code | Repos, issues, PRs, actions, releases |
|
|
113
|
+
| **Vercel** | Hosting | Deployments, domains, env vars |
|
|
114
|
+
| **Cloudflare** | Infrastructure | DNS, workers, pages, zones |
|
|
115
|
+
|
|
116
|
+
### Marketing & Social (6)
|
|
117
|
+
| Service | Tools | What You Can Do |
|
|
118
|
+
|---------|-------|-----------------|
|
|
119
|
+
| **Mailchimp** | Email Marketing | Campaigns, audiences, automations |
|
|
120
|
+
| **LinkedIn** | Social | Posts, profiles, companies |
|
|
121
|
+
| **Instagram** | Social | Posts, stories, insights |
|
|
122
|
+
| **TikTok** | Social | Videos, analytics |
|
|
123
|
+
| **Twitter/X** | Social | Tweets, timelines, users |
|
|
124
|
+
| **SmartLead** | Outreach | Campaigns, leads, sequences |
|
|
125
|
+
|
|
126
|
+
### Advertising (5)
|
|
127
|
+
| Service | Tools | What You Can Do |
|
|
128
|
+
|---------|-------|-----------------|
|
|
129
|
+
| **Google Ads** | Advertising | Campaigns, ad groups, keywords |
|
|
130
|
+
| **Facebook Ads** | Advertising | Campaigns, ad sets, creatives |
|
|
131
|
+
| **LinkedIn Ads** | Advertising | Campaigns, audiences, conversions |
|
|
132
|
+
| **TikTok Ads** | Advertising | Campaigns, ad groups, creatives |
|
|
133
|
+
| **Instagram Ads** | Advertising | Campaigns, ad sets, creatives |
|
|
134
|
+
|
|
135
|
+
### E-Commerce (2)
|
|
136
|
+
| Service | Tools | What You Can Do |
|
|
137
|
+
|---------|-------|-----------------|
|
|
138
|
+
| **Shopify** | E-Commerce | Products, orders, customers, inventory |
|
|
139
|
+
| **GoDaddy** | Domains | Domain availability, DNS, registration |
|
|
140
|
+
|
|
141
|
+
### Productivity (5)
|
|
142
|
+
| Service | Tools | What You Can Do |
|
|
143
|
+
|---------|-------|-----------------|
|
|
144
|
+
| **Google Calendar** | Scheduling | Events, calendars, reminders |
|
|
145
|
+
| **Calendly** | Scheduling | Events, invitees, availability |
|
|
146
|
+
| **Zoom** | Video | Meetings, recordings, users |
|
|
147
|
+
| **Google Drive** | Storage | Files, folders, permissions |
|
|
148
|
+
| **Dropbox** | Storage | Files, folders, sharing |
|
|
149
|
+
|
|
150
|
+
### Microsoft (4)
|
|
151
|
+
| Service | Tools | What You Can Do |
|
|
152
|
+
|---------|-------|-----------------|
|
|
153
|
+
| **Outlook** | Email | Messages, calendar, contacts |
|
|
154
|
+
| **Teams** | Collaboration | Messages, channels, meetings |
|
|
155
|
+
| **OneDrive** | Storage | Files, folders, sharing |
|
|
156
|
+
| **Azure** | Cloud | Resources, services, management |
|
|
157
|
+
|
|
158
|
+
### Automation & Integration (4)
|
|
159
|
+
| Service | Tools | What You Can Do |
|
|
160
|
+
|---------|-------|-----------------|
|
|
161
|
+
| **Zapier** | Automation | Triggers, actions, zaps |
|
|
162
|
+
| **n8n** | Automation | Workflows, nodes, executions |
|
|
163
|
+
| **Pabbly** | Automation | Workflows, connections |
|
|
164
|
+
| **Make** | Automation | Scenarios, modules, connections |
|
|
74
165
|
|
|
75
|
-
|
|
76
|
-
# In Claude Desktop after setup:
|
|
166
|
+
---
|
|
77
167
|
|
|
78
|
-
|
|
79
|
-
AI: Connected to Stripe (8 capabilities available)
|
|
168
|
+
## Tool Count Breakdown
|
|
80
169
|
|
|
81
|
-
|
|
82
|
-
|
|
170
|
+
| Module | Tools | Description |
|
|
171
|
+
|--------|-------|-------------|
|
|
172
|
+
| **Service Catalog** | 651 | API tools across 54 services |
|
|
173
|
+
| **CRM Module** | 294 | Contacts, calendars, pipelines, invoices, payments, social, custom objects |
|
|
174
|
+
| **0nVault** | 4 | AES-256-GCM machine-bound encryption |
|
|
175
|
+
| **Vault Containers** | 8 | Patent-pending multi-layer encrypted containers (US #63/990,046) |
|
|
176
|
+
| **Deed Transfer** | 6 | Digital business asset packaging and transfer |
|
|
177
|
+
| **Engine** | 6 | Credential import, verification, AI platform config generation |
|
|
178
|
+
| **App Builder** | 5 | Operations, routes, middleware, scheduler |
|
|
179
|
+
| **Total** | **945** | |
|
|
83
180
|
|
|
84
|
-
|
|
85
|
-
AI: Your Stripe balance is $12,450.00. Posted to #finance.
|
|
86
|
-
```
|
|
181
|
+
---
|
|
87
182
|
|
|
88
|
-
|
|
183
|
+
## Key Features
|
|
89
184
|
|
|
90
|
-
|
|
185
|
+
### Encrypted Vault (Patent Pending)
|
|
186
|
+
- AES-256-GCM + PBKDF2-SHA512 (100K iterations)
|
|
187
|
+
- Machine-bound hardware fingerprinting
|
|
188
|
+
- 7 semantic layers: workflows, credentials, env_vars, mcp_configs, site_profiles, ai_brain, audit_trail
|
|
189
|
+
- Multi-party escrow with X25519 ECDH (up to 8 parties)
|
|
190
|
+
- Seal of Truth: SHA3-256 content-addressed integrity verification
|
|
191
|
+
- Ed25519 digital signatures
|
|
91
192
|
|
|
92
|
-
|
|
193
|
+
### .0n Workflow Runtime
|
|
194
|
+
- Declarative YAML/JSON workflow files
|
|
195
|
+
- Variable resolution: `{{system.*}}` > `{{launch.*}}` > `{{inputs.*}}` > `{{step.output.*}}`
|
|
196
|
+
- Internal actions: lookup, set, transform, compute, condition, map
|
|
197
|
+
- Three-level execution: Pipeline > Assembly Line > Radial Burst
|
|
93
198
|
|
|
94
|
-
###
|
|
199
|
+
### Multi-AI Council
|
|
200
|
+
- Route tasks across multiple AI providers
|
|
201
|
+
- Consensus-based decision making
|
|
202
|
+
- Automatic fallback and load balancing
|
|
95
203
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
204
|
+
### Zero-Knowledge Capability Proxy
|
|
205
|
+
- All API calls route through a credential-wiping proxy
|
|
206
|
+
- Your secrets never reach the AI model
|
|
207
|
+
- Full audit trail of every execution
|
|
99
208
|
|
|
100
|
-
|
|
209
|
+
---
|
|
101
210
|
|
|
102
|
-
|
|
103
|
-
npm install -g 0nmcp
|
|
104
|
-
```
|
|
211
|
+
## MCP Configuration
|
|
105
212
|
|
|
106
|
-
###
|
|
213
|
+
### Claude Desktop
|
|
107
214
|
|
|
108
|
-
Add to `~/Library/Application Support/Claude/claude_desktop_config.json
|
|
215
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
109
216
|
|
|
110
217
|
```json
|
|
111
218
|
{
|
|
112
219
|
"mcpServers": {
|
|
113
|
-
"
|
|
220
|
+
"0nMCP": {
|
|
114
221
|
"command": "npx",
|
|
115
|
-
"args": ["0nmcp"]
|
|
116
|
-
"env": {
|
|
117
|
-
"ANTHROPIC_API_KEY": "sk-ant-..."
|
|
118
|
-
}
|
|
222
|
+
"args": ["-y", "0nmcp"]
|
|
119
223
|
}
|
|
120
224
|
}
|
|
121
225
|
}
|
|
122
226
|
```
|
|
123
227
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
### Restart Claude Desktop. Start talking.
|
|
127
|
-
|
|
128
|
-
> **New to 0nMCP?** Visit **[0nmcp.com](https://0nmcp.com)** for guides, tutorials, and the community hub.
|
|
129
|
-
|
|
130
|
-
---
|
|
131
|
-
|
|
132
|
-
## Supported Services
|
|
133
|
-
|
|
134
|
-
| Service | Type | What You Can Do |
|
|
135
|
-
|---------|------|-----------------|
|
|
136
|
-
| **Stripe** | Payments | Create customers, send invoices, check balance, subscriptions, products, prices |
|
|
137
|
-
| **SendGrid** | Email | Send emails, manage contacts, templates, lists |
|
|
138
|
-
| **Resend** | Email | Send transactional emails, manage domains |
|
|
139
|
-
| **Twilio** | SMS/Voice | Send SMS, make calls, check message status |
|
|
140
|
-
| **Slack** | Communication | Post to channels, DMs, list users, create channels |
|
|
141
|
-
| **Discord** | Communication | Send messages, list server channels |
|
|
142
|
-
| **OpenAI** | AI | Text generation, DALL-E images, embeddings, TTS |
|
|
143
|
-
| **Airtable** | Database | CRUD records in any base, list bases |
|
|
144
|
-
| **Notion** | Database | Search, create pages, query databases |
|
|
145
|
-
| **GitHub** | Code | Repos, issues, pull requests |
|
|
146
|
-
| **Linear** | Projects | Issues, projects (GraphQL) |
|
|
147
|
-
| **Shopify** | E-commerce | Products, orders, customers, inventory |
|
|
148
|
-
| **HubSpot** | CRM | Contacts, companies, deals |
|
|
149
|
-
| **Supabase** | Database | Tables, auth users, storage buckets |
|
|
150
|
-
| **Calendly** | Scheduling | Events, event types, availability |
|
|
151
|
-
| **Google Calendar** | Scheduling | Events, calendars, CRUD |
|
|
152
|
-
| **Gmail** | Email | Send, read, search emails, manage labels, drafts, threads, attachments |
|
|
153
|
-
| **Google Sheets** | Database | Read/write spreadsheets, create sheets, append rows, batch operations |
|
|
154
|
-
| **Google Drive** | Storage | Upload, download, search, share files, manage folders, permissions |
|
|
155
|
-
| **Jira** | Dev Tools | Issues, projects, sprints, boards, transitions, comments, assignments |
|
|
156
|
-
| **Zendesk** | Support | Tickets, users, organizations, comments, tags, views, search |
|
|
157
|
-
| **Mailchimp** | Marketing | Campaigns, lists, members, templates, automations, reports |
|
|
158
|
-
| **Zoom** | Communication | Meetings, webinars, recordings, users, registrants |
|
|
159
|
-
| **Microsoft 365** | Productivity | Outlook mail, Teams messages, OneDrive files, calendar events |
|
|
160
|
-
| **MongoDB** | Database | Find, insert, update, delete, aggregate documents via Atlas Data API |
|
|
161
|
-
| **QuickBooks** | Accounting | Invoices, customers, payments, bills, estimates, items, P&L reports |
|
|
162
|
-
| **Asana** | Projects | Tasks, projects, sections, workspaces, tags, teams, search |
|
|
163
|
-
| **Intercom** | Support | Contacts, conversations, companies, tags, help center articles |
|
|
164
|
-
| **Dropbox** | Storage | Files, folders, sharing links, search, move, copy |
|
|
165
|
-
| **WhatsApp Business** | Communication | Text messages, templates, media messages via Business API |
|
|
166
|
-
| **Instagram** | Social | Media posts, comments, insights, stories via Graph API |
|
|
167
|
-
| **X (Twitter)** | Social | Tweets, users, followers, lists, DMs, likes, retweets |
|
|
168
|
-
| **TikTok Business** | Social | Videos, ads, campaigns, ad groups, reports |
|
|
169
|
-
| **Google Ads** | Advertising | Campaigns, ad groups, ads, keywords, performance reports |
|
|
170
|
-
| **Facebook Ads** | Advertising | Campaigns, ad sets, ads, insights, custom audiences |
|
|
171
|
-
| **Plaid** | Finance | Bank accounts, transactions, balances, identity, auth |
|
|
172
|
-
| **Square** | Payments | Payments, customers, orders, catalog, inventory |
|
|
173
|
-
| **TikTok Ads** | Advertising | Campaigns, ad groups, ads, reports, audiences |
|
|
174
|
-
| **X Ads** | Advertising | Campaigns, line items, promoted tweets, stats, audiences |
|
|
175
|
-
| **LinkedIn Ads** | Advertising | Campaigns, campaign groups, creatives, analytics, audiences |
|
|
176
|
-
| **Instagram Ads** | Advertising | Campaigns, ad sets, ads, insights via Marketing API |
|
|
177
|
-
| **Smartlead** | Marketing | Cold email campaigns, leads, sequences, email accounts |
|
|
178
|
-
| **Zapier** | Automation | Zaps, actions — view and toggle automations |
|
|
179
|
-
| **MuleSoft** | Integration | APIs, applications, environments via Anypoint Platform |
|
|
180
|
-
| **Microsoft Azure** | Cloud | Resources, resource groups, storage, VMs via ARM |
|
|
181
|
-
| **Pipedrive** | CRM | Deals, persons, organizations, activities, pipelines, notes |
|
|
182
|
-
| **LinkedIn** | Social | Posts, profile, connections, organization pages |
|
|
183
|
-
| **Cloudflare** | Cloud | DNS zones, records, workers, KV storage, page rules, firewall |
|
|
184
|
-
| **GoDaddy** | Cloud | Domains, DNS, availability, agreements, renewals |
|
|
185
|
-
| **n8n** | Automation | Workflows, executions, credentials — self-hosted automation |
|
|
186
|
-
| **Pabbly** | Automation | Workflows, triggers, actions, connections |
|
|
187
|
-
| **Make** | Automation | Scenarios, organizations, data stores, connections |
|
|
188
|
-
| **CRM** | CRM | **245 tools** — contacts, conversations, calendars, invoices, payments, products, pipelines, social media, custom objects, and more |
|
|
189
|
-
|
|
190
|
-
**53 services. 850 tools. 23 categories. One interface.**
|
|
191
|
-
|
|
192
|
-
> **More coming:** AWS S3, Vercel, Firebase, Figma, DocuSign, Twilio Flex...
|
|
193
|
-
|
|
194
|
-
---
|
|
195
|
-
|
|
196
|
-
## Examples
|
|
197
|
-
|
|
198
|
-
### Simple Tasks
|
|
199
|
-
|
|
200
|
-
```
|
|
201
|
-
"Send an email to sarah@example.com: Meeting moved to 3pm"
|
|
202
|
-
|
|
203
|
-
"Create a Stripe customer for mike@startup.io"
|
|
204
|
-
|
|
205
|
-
"Post to #engineering on Slack: Deploy complete!"
|
|
206
|
-
|
|
207
|
-
"Send SMS to +1555123456: Your order shipped"
|
|
208
|
-
|
|
209
|
-
"What's my Stripe balance?"
|
|
210
|
-
|
|
211
|
-
"Search Notion for project roadmap"
|
|
212
|
-
```
|
|
213
|
-
|
|
214
|
-
### Multi-Step
|
|
215
|
-
|
|
216
|
-
```
|
|
217
|
-
"Create a Stripe invoice for $1000, then email the link via Gmail to john@client.com"
|
|
218
|
-
|
|
219
|
-
"Create a Jira issue for the login bug, then post it to #bugs on Slack"
|
|
220
|
-
|
|
221
|
-
"Look up sarah@example.com in my CRM and send her a follow-up email"
|
|
222
|
-
```
|
|
228
|
+
### Cursor
|
|
223
229
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
```
|
|
227
|
-
"Check if we have any overdue invoices in Stripe. If so, send a summary
|
|
228
|
-
to #finance on Slack and email the finance team."
|
|
229
|
-
```
|
|
230
|
-
|
|
231
|
-
The AI:
|
|
232
|
-
1. Queries Stripe for overdue invoices
|
|
233
|
-
2. Formats a summary
|
|
234
|
-
3. Posts to Slack
|
|
235
|
-
4. Sends the email
|
|
236
|
-
5. Reports back
|
|
237
|
-
|
|
238
|
-
**You describe the outcome. AI figures out the path.**
|
|
239
|
-
|
|
240
|
-
### CRM Snapshots — Deploy Entire Configurations
|
|
241
|
-
|
|
242
|
-
```
|
|
243
|
-
"Deploy a full CRM snapshot with a 12-stage sales pipeline,
|
|
244
|
-
all lead tags, custom values, and 18 workflow definitions"
|
|
245
|
-
```
|
|
246
|
-
|
|
247
|
-
One tool call. Everything deployed:
|
|
230
|
+
Add to `.cursor/mcp.json`:
|
|
248
231
|
|
|
249
232
|
```json
|
|
250
233
|
{
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
"tags": ["New Lead", "FB Lead", "Hot Lead", "Booked Appointment", "No Show"],
|
|
257
|
-
"custom_values": {
|
|
258
|
-
"calendar_link": "https://calendly.com/yourlink",
|
|
259
|
-
"support_email": "support@yourco.com",
|
|
260
|
-
"welcome_sms": "Hey {{contact.first_name}}, welcome aboard!"
|
|
234
|
+
"mcpServers": {
|
|
235
|
+
"0nMCP": {
|
|
236
|
+
"command": "npx",
|
|
237
|
+
"args": ["-y", "0nmcp"]
|
|
238
|
+
}
|
|
261
239
|
}
|
|
262
240
|
}
|
|
263
241
|
```
|
|
264
242
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
## All Tools
|
|
268
|
-
|
|
269
|
-
### Universal Tools (7)
|
|
270
|
-
|
|
271
|
-
| Tool | Description |
|
|
272
|
-
|------|-------------|
|
|
273
|
-
| `execute` | Run any task in natural language across all connected services |
|
|
274
|
-
| `connect_service` | Connect a new service with credentials |
|
|
275
|
-
| `disconnect_service` | Remove a connected service |
|
|
276
|
-
| `list_connections` | See what's connected and capability counts |
|
|
277
|
-
| `list_available_services` | Browse all 53 services grouped by category |
|
|
278
|
-
| `get_service_info` | Deep dive on a specific service — endpoints, auth, capabilities |
|
|
279
|
-
| `api_call` | Direct API call to any connected service endpoint |
|
|
280
|
-
|
|
281
|
-
### CRM Tools (245)
|
|
282
|
-
|
|
283
|
-
The deepest CRM integration available in any MCP server. 245 tools across 12 modules — every endpoint, every parameter, full CRUD.
|
|
284
|
-
|
|
285
|
-
| Module | Tools | Coverage |
|
|
286
|
-
|--------|-------|----------|
|
|
287
|
-
| **Auth** | 5 | OAuth flow, token management, snapshot deploy, workflow processing |
|
|
288
|
-
| **Contacts** | 23 | CRUD, search, upsert, tags, notes, tasks, workflows, followers, campaigns |
|
|
289
|
-
| **Conversations** | 13 | CRUD, messaging (SMS, Email, WhatsApp, IG, FB, Live Chat), attachments |
|
|
290
|
-
| **Calendars** | 27 | Calendars, events, appointments, groups, resources, blocked slots, notes |
|
|
291
|
-
| **Opportunities** | 14 | CRUD, search, upsert, status updates, followers, pipelines, stages |
|
|
292
|
-
| **Invoices** | 20 | CRUD, send, void, record payments, templates, schedules, auto-payment |
|
|
293
|
-
| **Payments** | 16 | Orders, transactions, subscriptions, coupons, providers, fulfillment |
|
|
294
|
-
| **Products** | 10 | Products + prices CRUD, inventory management |
|
|
295
|
-
| **Locations** | 24 | Locations, tags, custom fields, custom values, templates, tasks, timezones |
|
|
296
|
-
| **Social** | 35 | Social media posts, blogs, authors, categories, tags, Google Business |
|
|
297
|
-
| **Users** | 24 | Users, forms, surveys, funnels, media, companies, businesses |
|
|
298
|
-
| **Objects** | 34 | Custom objects, associations, email, workflows, snapshots, links, campaigns, courses, SaaS |
|
|
299
|
-
|
|
300
|
-
**850 total tools.** Universal orchestration (576 catalog tools across 53 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).
|
|
301
|
-
|
|
302
|
-
> Every CRM tool is data-driven — defined as configuration, not code. Adding new endpoints takes minutes, not hours. See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
303
|
-
|
|
304
|
-
---
|
|
305
|
-
|
|
306
|
-
## What's New in v2.3
|
|
307
|
-
|
|
308
|
-
### v2.3.0 — Conversion Layer + 5 New Services
|
|
309
|
-
|
|
310
|
-
- **5 new services**: Cloudflare (DNS, Workers, KV), GoDaddy (domains), n8n (self-hosted automation), Pabbly (workflows), Make (scenarios)
|
|
311
|
-
- **68 new catalog endpoints** — from 508 to 576 catalog tools
|
|
312
|
-
- **Resend expanded**: 3→67 endpoints — full Resend API coverage (domains, contacts, audiences, broadcasts)
|
|
313
|
-
- **ACTION_ALIASES conversion layer** — 150+ intuitive action mappings (e.g., `contacts.create` → `create_contact`) so .0n SWITCH files use natural action names
|
|
314
|
-
- **Connection auto-enrichment** — workflow runner automatically injects `locationId`, `pipelineId`, `projectRef` from .0n connection metadata
|
|
315
|
-
- **Enhanced API validation** — CRM, Anthropic, and Vercel verification endpoints added to engine validator
|
|
316
|
-
- Total: **850 tools across 53 services in 23 categories**
|
|
317
|
-
|
|
318
|
-
### v2.2.0 — 22 New Services Expansion
|
|
319
|
-
|
|
320
|
-
- **255 new catalog endpoints** across 22 new services — from 290 to 576 catalog tools
|
|
321
|
-
- **6 new categories**: Accounting, Advertising, Finance, Cloud, Integration, Automation
|
|
322
|
-
- **Advertising suite**: Google Ads, Facebook Ads, TikTok Ads, X Ads, LinkedIn Ads, Instagram Ads
|
|
323
|
-
- **Social expansion**: Instagram, X (Twitter), TikTok Business, LinkedIn
|
|
324
|
-
- **Business tools**: QuickBooks, Asana, Intercom, Pipedrive, Square, Plaid
|
|
325
|
-
- **Infrastructure**: Dropbox, MuleSoft, Microsoft Azure, Zapier
|
|
326
|
-
- **Communication**: WhatsApp Business
|
|
327
|
-
- **Marketing**: Smartlead cold email outreach
|
|
328
|
-
- Total: **850 tools across 53 services in 23 categories**
|
|
329
|
-
|
|
330
|
-
### v2.1.0 — Business Deed Transfer System
|
|
331
|
-
|
|
332
|
-
- **6 new tools**: `deed_create`, `deed_open`, `deed_inspect`, `deed_verify`, `deed_accept`, `deed_import`
|
|
333
|
-
- Package entire business digital assets into encrypted `.0nv` containers
|
|
334
|
-
- Chain of custody tracking with transfer history in audit_trail layer
|
|
335
|
-
- Auto-detection of credentials from .env/JSON/CSV via engine mapper
|
|
336
|
-
- Lifecycle: **CREATE → PACKAGE → ESCROW → ACCEPT → IMPORT → FLIP**
|
|
337
|
-
|
|
338
|
-
### v2.0.0 — 0nVault Container System (Patent Pending #63/990,046)
|
|
339
|
-
|
|
340
|
-
- **8 new tools**: `vault_container_create/open/inspect/verify` + `escrow_create/escrow_unwrap/transfer/revoke`
|
|
341
|
-
- **7 semantic layers**: workflows, credentials, env_vars, mcp_configs, site_profiles, ai_brain, audit_trail
|
|
342
|
-
- Argon2id double-encryption for credential layer
|
|
343
|
-
- X25519 ECDH multi-party escrow (up to 8 parties, per-layer access matrix)
|
|
344
|
-
- **Seal of Truth**: SHA3-256 content-addressed integrity verification
|
|
345
|
-
- Ed25519 digital signatures, binary `.0nv` container format
|
|
346
|
-
- Transfer registry with replay prevention
|
|
347
|
-
- **Application Engine** — build, distribute, inspect, schedule `.0n` applications
|
|
348
|
-
|
|
349
|
-
### v1.7.0 — Foundation
|
|
350
|
-
|
|
351
|
-
- 550 tools across 53 services in 13 categories
|
|
352
|
-
- **.0n Conversion Engine** — import credentials, auto-map to 53 services, generate configs for 7 AI platforms
|
|
353
|
-
- **Vault** — machine-bound encrypted credential storage (AES-256-GCM + PBKDF2-SHA512 + hardware fingerprint)
|
|
354
|
-
- **Workflow Runtime** + **HTTP Server** + **CLI with named runs**
|
|
355
|
-
- **Three-Level Execution** (Patent Pending) — Pipeline → Assembly Line → Radial Burst
|
|
356
|
-
|
|
357
|
-
> **850 tools. 53 services. 1,142 total capabilities.** See [CHANGELOG.md](CHANGELOG.md) for full version history and the [What's New in v2.3](#-whats-new-in-v23) section above.
|
|
358
|
-
|
|
359
|
-
---
|
|
360
|
-
|
|
361
|
-
## How It Works
|
|
362
|
-
|
|
363
|
-
```
|
|
364
|
-
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
|
|
365
|
-
│ You (Claude) │────▶│ 0nMCP │────▶│ Your APIs │
|
|
366
|
-
│ │ │ │ │ │
|
|
367
|
-
│ "Invoice John │ │ 1. Parse intent │ │ Stripe │
|
|
368
|
-
│ for $500 and │ │ 2. Plan steps │ │ SendGrid │
|
|
369
|
-
│ notify #sales" │ │ 3. Execute APIs │ │ Slack │
|
|
370
|
-
│ │◀────│ 4. Chain data │◀────│ CRM │
|
|
371
|
-
│ │ │ 5. Summarize │ │ + 49 more... │
|
|
372
|
-
└─────────────────┘ └──────────────────┘ └─────────────────┘
|
|
373
|
-
```
|
|
374
|
-
|
|
375
|
-
### With `ANTHROPIC_API_KEY` (AI Mode)
|
|
376
|
-
|
|
377
|
-
Claude analyzes your task, inspects connected services and their capabilities, creates a multi-step execution plan, runs every API call in order, passes data between steps, and summarizes the results.
|
|
378
|
-
|
|
379
|
-
### Without API Key (Keyword Mode)
|
|
380
|
-
|
|
381
|
-
The orchestrator uses keyword matching to route tasks to the right service. Less intelligent but still functional for straightforward single-service requests.
|
|
382
|
-
|
|
383
|
-
---
|
|
384
|
-
|
|
385
|
-
## Why Not Just Use...
|
|
243
|
+
### Windsurf
|
|
386
244
|
|
|
387
|
-
|
|
388
|
-
|---|---|---|---|
|
|
389
|
-
| **Setup time** | 2 minutes | 30+ min per zap | Hours/days |
|
|
390
|
-
| **Learning curve** | None (natural language) | Medium (visual builder) | High (APIs, auth) |
|
|
391
|
-
| **Multi-step tasks** | Just describe it | Build complex zaps | Write orchestration logic |
|
|
392
|
-
| **Cost** | Free + your API keys | $20-$100+/month | Your time |
|
|
393
|
-
| **Flexibility** | Say what you want | Triggers/actions only | Unlimited but complex |
|
|
394
|
-
| **Maintenance** | Zero | Update broken zaps | Fix API changes |
|
|
395
|
-
| **Open source** | Yes (MIT) | No | Depends |
|
|
396
|
-
| **Tools available** | 850 | Varies | Whatever you build |
|
|
397
|
-
|
|
398
|
-
---
|
|
399
|
-
|
|
400
|
-
## The .0n Standard
|
|
401
|
-
|
|
402
|
-
0nMCP implements the **[.0n Standard](https://github.com/0nork/0n-spec)** — a universal configuration format for AI orchestration.
|
|
403
|
-
|
|
404
|
-
```
|
|
405
|
-
~/.0n/
|
|
406
|
-
├── config.json # Global settings
|
|
407
|
-
├── connections/ # Service credentials as .0n files
|
|
408
|
-
│ ├── stripe.0n
|
|
409
|
-
│ ├── slack.0n
|
|
410
|
-
│ └── sendgrid.0n
|
|
411
|
-
├── workflows/ # Saved automation definitions
|
|
412
|
-
│ └── invoice-notify.0n
|
|
413
|
-
├── snapshots/ # System state captures
|
|
414
|
-
│ └── crm-setup.0n
|
|
415
|
-
├── history/ # Execution logs (JSONL by date)
|
|
416
|
-
│ └── 2026-02-06.jsonl
|
|
417
|
-
└── cache/
|
|
418
|
-
```
|
|
419
|
-
|
|
420
|
-
Every connection is stored as a `.0n` file with a standard header:
|
|
245
|
+
Add to `~/.windsurf/mcp.json`:
|
|
421
246
|
|
|
422
247
|
```json
|
|
423
248
|
{
|
|
424
|
-
"
|
|
425
|
-
"
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
"service": "stripe",
|
|
430
|
-
"auth": {
|
|
431
|
-
"type": "api_key",
|
|
432
|
-
"credentials": { "api_key": "sk_live_..." }
|
|
249
|
+
"mcpServers": {
|
|
250
|
+
"0nMCP": {
|
|
251
|
+
"command": "npx",
|
|
252
|
+
"args": ["-y", "0nmcp"]
|
|
253
|
+
}
|
|
433
254
|
}
|
|
434
255
|
}
|
|
435
256
|
```
|
|
436
257
|
|
|
437
|
-
|
|
258
|
+
### Claude Code
|
|
438
259
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
---
|
|
442
|
-
|
|
443
|
-
## Architecture
|
|
444
|
-
|
|
445
|
-
```
|
|
446
|
-
0nMCP/
|
|
447
|
-
├── index.js # Entry point — MCP server startup
|
|
448
|
-
├── catalog.js # Service catalog — 53 integrations with endpoints
|
|
449
|
-
├── connections.js # Connection manager — ~/.0n/connections/*.0n
|
|
450
|
-
├── orchestrator.js # AI execution planner — the brain
|
|
451
|
-
├── workflow.js # WorkflowRunner — .0n file execution
|
|
452
|
-
├── server.js # Express HTTP server — MCP over HTTP + webhooks
|
|
453
|
-
├── webhooks.js # Webhook receiver and HMAC verification
|
|
454
|
-
├── ratelimit.js # Per-service rate limiting with retry
|
|
455
|
-
├── tools.js # Tool registration for catalog + engine tools
|
|
456
|
-
├── cli.js # CLI — 39KB, all commands
|
|
457
|
-
├── crm/ # 245 CRM tools across 12 modules
|
|
458
|
-
│ ├── index.js # Tool orchestrator — registers all modules
|
|
459
|
-
│ ├── helpers.js # Data-driven tool factory — registerTools()
|
|
460
|
-
│ ├── auth.js # OAuth, tokens, snapshots, workflows (5 tools)
|
|
461
|
-
│ ├── contacts.js # Contact management (23 tools)
|
|
462
|
-
│ ├── conversations.js # Messaging — SMS, Email, WhatsApp, IG, FB (13 tools)
|
|
463
|
-
│ ├── calendars.js # Calendar & scheduling (27 tools)
|
|
464
|
-
│ ├── opportunities.js # Pipeline & deal management (14 tools)
|
|
465
|
-
│ ├── invoices.js # Invoicing (20 tools)
|
|
466
|
-
│ ├── payments.js # Payment processing (16 tools)
|
|
467
|
-
│ ├── products.js # Product catalog (10 tools)
|
|
468
|
-
│ ├── locations.js # Location management (24 tools)
|
|
469
|
-
│ ├── social.js # Social media & blogs (35 tools)
|
|
470
|
-
│ ├── users.js # User & form management (24 tools)
|
|
471
|
-
│ └── objects.js # Custom objects & associations (34 tools)
|
|
472
|
-
├── vault/ # Encrypted credential storage + containers
|
|
473
|
-
│ ├── index.js # Vault entry — seal/unseal/verify/fingerprint (4 tools)
|
|
474
|
-
│ ├── container.js # 0nVault Container orchestrator
|
|
475
|
-
│ ├── crypto-container.js # AES-256-GCM + Argon2id encryption
|
|
476
|
-
│ ├── layers.js # 7 semantic layers
|
|
477
|
-
│ ├── escrow.js # X25519 ECDH multi-party escrow
|
|
478
|
-
│ ├── seal.js # Seal of Truth — SHA3-256 integrity
|
|
479
|
-
│ ├── registry.js # Transfer registry with replay prevention
|
|
480
|
-
│ ├── tools-container.js # 8 vault container tools
|
|
481
|
-
│ ├── deed.js # Business Deed Transfer core
|
|
482
|
-
│ ├── deed-collector.js # Asset collection from .env/JSON/CSV
|
|
483
|
-
│ ├── deed-importer.js # Import deeds into .0n ecosystem
|
|
484
|
-
│ ├── tools-deed.js # 6 deed transfer tools
|
|
485
|
-
│ └── cache.js # Vault cache layer
|
|
486
|
-
├── engine/ # .0n Conversion Engine + App Builder
|
|
487
|
-
│ ├── index.js # Engine entry — 6 tools
|
|
488
|
-
│ ├── parser.js # Multi-format credential parser
|
|
489
|
-
│ ├── mapper.js # Auto-map credentials to 53 services
|
|
490
|
-
│ ├── validator.js # API key verification
|
|
491
|
-
│ ├── platforms.js # 7 AI platform config generators
|
|
492
|
-
│ ├── bundler.js # Portable .0n bundle creator
|
|
493
|
-
│ ├── cipher-portable.js # Passphrase-only AES-256-GCM
|
|
494
|
-
│ ├── application.js # Application Engine core
|
|
495
|
-
│ ├── app-builder.js # App builder
|
|
496
|
-
│ ├── app-server.js # App HTTP middleware
|
|
497
|
-
│ ├── operations.js # App operations
|
|
498
|
-
│ └── scheduler.js # CronScheduler class
|
|
499
|
-
├── types/
|
|
500
|
-
│ └── index.d.ts # Full TypeScript definitions
|
|
501
|
-
├── package.json
|
|
502
|
-
├── LICENSE # MIT
|
|
503
|
-
└── CONTRIBUTING.md
|
|
260
|
+
```bash
|
|
261
|
+
claude mcp add 0nMCP -- npx -y 0nmcp
|
|
504
262
|
```
|
|
505
263
|
|
|
506
|
-
| Component | What It Does |
|
|
507
|
-
|-----------|-------------|
|
|
508
|
-
| **Service Catalog** | Defines all 53 services — their base URLs, endpoints, auth patterns, and capabilities |
|
|
509
|
-
| **Connection Manager** | Stores credentials as `.0n` files in `~/.0n/connections/` per the .0n standard |
|
|
510
|
-
| **Orchestrator** | The brain — parses natural language, plans multi-step execution, calls APIs, chains data |
|
|
511
|
-
| **CRM Modules** | 245 tools across 12 modules — data-driven, every tool is config not code |
|
|
512
|
-
| **Vault** | Machine-bound encrypted credential storage — AES-256-GCM + PBKDF2-SHA512 |
|
|
513
|
-
| **Vault Container System** | Patent Pending #63/990,046 — 7 semantic layers, multi-party escrow, Seal of Truth, binary .0nv format |
|
|
514
|
-
| **Business Deed Transfer** | Package + escrow + transfer entire digital businesses in encrypted containers |
|
|
515
|
-
| **Conversion Engine** | Import credentials from .env/CSV/JSON, auto-map to 53 services, generate 7 AI platform configs |
|
|
516
|
-
| **Application Engine** | Build, distribute, schedule .0n applications with CronScheduler + HTTP middleware |
|
|
517
|
-
| **Workflow Runtime** | Load and execute `.0n` workflow files with template engine, conditions, and step chaining |
|
|
518
|
-
| **HTTP Server** | Express-based REST API, MCP over HTTP, and webhook receivers |
|
|
519
|
-
| **Rate Limiter** | Per-service rate limits with automatic retry and backoff |
|
|
520
|
-
| **Webhook Handler** | HMAC-verified event processing — Stripe, CRM, Slack, GitHub, Twilio, Shopify |
|
|
521
|
-
| **Execution History** | Logs every task to `~/.0n/history/` as JSONL — full audit trail |
|
|
522
|
-
| **TypeScript Defs** | Full type coverage for all exports, connections, workflows, and tools |
|
|
523
|
-
|
|
524
264
|
---
|
|
525
265
|
|
|
526
|
-
##
|
|
527
|
-
|
|
528
|
-
- **Local execution** — MCP server runs on your machine, not in the cloud
|
|
529
|
-
- **Direct API calls** — Requests go straight to each service, not through a proxy
|
|
530
|
-
- **Your credentials** — Stored locally in `~/.0n/connections/` as `.0n` files, never sent anywhere
|
|
531
|
-
- **Anthropic key** — Only used for task planning (never passed to external services)
|
|
532
|
-
- **Rate limiting** — Built-in per-service rate limits prevent accidental API abuse
|
|
533
|
-
- **Execution history** — Full audit trail in `~/.0n/history/`
|
|
534
|
-
- **Open source** — Audit every line yourself
|
|
266
|
+
## CLI Commands
|
|
535
267
|
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
268
|
+
```bash
|
|
269
|
+
0nmcp # Start MCP server (stdio)
|
|
270
|
+
0nmcp serve [--port] [--host] # HTTP server mode
|
|
271
|
+
0nmcp run <workflow.0n> # Execute .0n workflow
|
|
272
|
+
0nmcp engine import # Import API keys from .env/CSV/JSON
|
|
273
|
+
0nmcp engine verify # Test all connections
|
|
274
|
+
0nmcp engine platforms # Generate configs for 7 AI platforms
|
|
275
|
+
0nmcp vault create # Create encrypted .0nv container
|
|
276
|
+
0nmcp vault open <file> # Decrypt container
|
|
277
|
+
0nmcp vault inspect <file> # Inspect without decrypting
|
|
278
|
+
0nmcp vault verify <file> # Verify Seal of Truth
|
|
279
|
+
0nmcp deed create # Package business assets for transfer
|
|
280
|
+
0nmcp deed accept <file> # Accept incoming business transfer
|
|
281
|
+
```
|
|
547
282
|
|
|
548
283
|
---
|
|
549
284
|
|
|
550
|
-
##
|
|
551
|
-
|
|
552
|
-
### Environment Variables
|
|
553
|
-
|
|
554
|
-
| Variable | Required | Description |
|
|
555
|
-
|----------|----------|-------------|
|
|
556
|
-
| `ANTHROPIC_API_KEY` | No | Enables AI-powered multi-step planning. Keyword matching without it. |
|
|
557
|
-
|
|
558
|
-
### Credential Storage
|
|
559
|
-
|
|
560
|
-
Connections stored as `.0n` files in `~/.0n/connections/`. For production:
|
|
561
|
-
- Use a secrets manager
|
|
562
|
-
- Enable encryption via `~/.0n/config.json`
|
|
563
|
-
- Use environment variables: `"api_key": "{{env.STRIPE_KEY}}"`
|
|
564
|
-
|
|
565
|
-
---
|
|
285
|
+
## Architecture
|
|
566
286
|
|
|
567
|
-
## For Developers
|
|
568
|
-
|
|
569
|
-
### Adding a New Service
|
|
570
|
-
|
|
571
|
-
Drop a definition into `catalog.js`:
|
|
572
|
-
|
|
573
|
-
```javascript
|
|
574
|
-
your_service: {
|
|
575
|
-
name: "Your Service",
|
|
576
|
-
type: "category",
|
|
577
|
-
description: "What it does",
|
|
578
|
-
baseUrl: "https://api.yourservice.com",
|
|
579
|
-
authType: "api_key",
|
|
580
|
-
credentialKeys: ["apiKey"],
|
|
581
|
-
capabilities: [
|
|
582
|
-
{ name: "do_thing", actions: ["create", "list"], description: "Does the thing" },
|
|
583
|
-
],
|
|
584
|
-
endpoints: {
|
|
585
|
-
do_thing: { method: "POST", path: "/things", body: { name: "" } },
|
|
586
|
-
list_things: { method: "GET", path: "/things" },
|
|
587
|
-
},
|
|
588
|
-
authHeader: (creds) => ({
|
|
589
|
-
"Authorization": `Bearer ${creds.apiKey}`,
|
|
590
|
-
"Content-Type": "application/json",
|
|
591
|
-
}),
|
|
592
|
-
},
|
|
593
287
|
```
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
},
|
|
609
|
-
body: ["name"],
|
|
610
|
-
}
|
|
288
|
+
index.js MCP server entry (McpServer from @modelcontextprotocol/sdk)
|
|
289
|
+
cli.js CLI handler
|
|
290
|
+
catalog.js SERVICE_CATALOG: 54 services with endpoints
|
|
291
|
+
tools.js Tool registration (catalog + engine + vault)
|
|
292
|
+
connections.js ~/.0n/ credential loader
|
|
293
|
+
orchestrator.js AI-driven workflow orchestration
|
|
294
|
+
workflow.js WorkflowRunner for .0n file execution
|
|
295
|
+
server.js Express HTTP server (MCP over HTTP + webhooks)
|
|
296
|
+
capability-proxy.js Zero-knowledge credential proxy
|
|
297
|
+
ratelimit.js Token bucket per service with backoff
|
|
298
|
+
webhooks.js HMAC verification (Stripe, CRM, Slack, GitHub, Twilio, Shopify)
|
|
299
|
+
crm/ 294 CRM tools (data-driven tool factory)
|
|
300
|
+
vault/ Encrypted vault + containers + deed transfer
|
|
301
|
+
engine/ Credential import, AI platform configs, app builder
|
|
611
302
|
```
|
|
612
303
|
|
|
613
|
-
The tool factory handles registration, validation, API calls, error handling — everything. See [CONTRIBUTING.md](CONTRIBUTING.md) for the full guide.
|
|
614
|
-
|
|
615
304
|
---
|
|
616
305
|
|
|
617
|
-
##
|
|
618
|
-
|
|
619
|
-
0nMCP grows with its community. Every milestone unlocks new capabilities — the more developers who join, the more powerful the platform becomes.
|
|
620
|
-
|
|
621
|
-
**Visit [0nmcp.com](https://0nmcp.com) for the full unlock schedule and community impact. [Become a Sponsor](https://0nmcp.com/sponsor)**
|
|
622
|
-
|
|
623
|
-
### Phase 0 — Foundation (Current)
|
|
624
|
-
|
|
625
|
-
- [x] **53 services, 850 tools, 23 categories**
|
|
626
|
-
- [x] Core orchestration engine with AI planning
|
|
627
|
-
- [x] **245 CRM tools** — full API coverage across 12 modules
|
|
628
|
-
- [x] Gmail, Google Sheets, Google Drive, Jira, Zendesk, Mailchimp, Zoom, Microsoft 365, MongoDB
|
|
629
|
-
- [x] Data-driven tool factory — config, not code
|
|
630
|
-
- [x] Full snapshot deployment (pipeline + tags + values + workflows)
|
|
631
|
-
- [x] **.0n Standard** — universal config format (`~/.0n/`)
|
|
632
|
-
- [x] Rate limiting, webhooks, TypeScript definitions, CLI
|
|
633
|
-
- [x] **npm published** — `npx 0nmcp` live on npm
|
|
634
|
-
|
|
635
|
-
### Phase 1 — Essential Expansion (100 stars / $500 MRR)
|
|
636
|
-
|
|
637
|
-
- [ ] **OAuth flows** — connect services with one click
|
|
638
|
-
- [ ] **Credential encryption** — AES-256-GCM at-rest
|
|
639
|
-
- [x] **QuickBooks** — accounting and invoicing
|
|
640
|
-
- [x] **Asana** — project and task management
|
|
641
|
-
- [x] **Intercom** — customer messaging
|
|
642
|
-
- [x] **22 new services** — advertising, social, finance, cloud, automation
|
|
643
|
-
- [x] Target: 53 services, 850 tools (exceeded)
|
|
644
|
-
|
|
645
|
-
### Phase 2 — Full Stack (500 stars / $2K MRR)
|
|
646
|
-
|
|
647
|
-
- [ ] **AWS S3** — cloud storage
|
|
648
|
-
- [ ] **Vercel** — deployment management
|
|
649
|
-
- [ ] **Cloudflare** — DNS, workers, security
|
|
650
|
-
- [ ] **Scheduled tasks** — "every Monday, send a report"
|
|
651
|
-
- [ ] **Conditionals** — "if balance < $100, alert me"
|
|
652
|
-
- [ ] Target: 35+ services, 750+ tools
|
|
653
|
-
|
|
654
|
-
### Phase 3 — Platform (1,000 stars / $5K MRR)
|
|
655
|
-
|
|
656
|
-
- [ ] **Plugin system** — bring your own services
|
|
657
|
-
- [ ] **Web dashboard** — manage connections visually
|
|
658
|
-
- [ ] **Workflow marketplace** — share and discover automations
|
|
659
|
-
- [ ] **Firebase, Figma, WordPress, Webflow**
|
|
660
|
-
- [ ] Target: 42+ services, 900+ tools
|
|
661
|
-
|
|
662
|
-
### Phase 4 — Industry Packs (5,000 stars / $15K MRR)
|
|
663
|
-
|
|
664
|
-
- [ ] Healthcare, Legal, Real Estate, and E-Commerce industry packs
|
|
665
|
-
- [ ] **Twilio Flex, Square, Plaid, DocuSign**
|
|
666
|
-
- [ ] Target: 55+ services, 1,200+ tools
|
|
667
|
-
|
|
668
|
-
### Phase 5 — Ecosystem Dominance (10,000 stars / $50K MRR)
|
|
669
|
-
|
|
670
|
-
- [ ] Multi-agent orchestration
|
|
671
|
-
- [ ] Self-hosted enterprise edition
|
|
672
|
-
- [ ] Real-time streaming execution
|
|
673
|
-
- [ ] Target: 75+ services, 2,000+ tools
|
|
674
|
-
|
|
675
|
-
### Phase 6 — The Singularity (25,000+ stars / $100K+ MRR)
|
|
676
|
-
|
|
677
|
-
- [ ] Autonomous agent mode
|
|
678
|
-
- [ ] Cross-organization federation
|
|
679
|
-
- [ ] AI-generated service adapters
|
|
680
|
-
- [ ] Target: 100+ services, 5,000+ tools
|
|
681
|
-
|
|
682
|
-
> Every unlock is permanent. Once a milestone is hit, the feature ships for everyone — free and open source forever.
|
|
683
|
-
|
|
684
|
-
---
|
|
685
|
-
|
|
686
|
-
## Community
|
|
687
|
-
|
|
688
|
-
0nMCP is built in the open by a growing network of developers who believe AI orchestration should be free, composable, and community-owned.
|
|
689
|
-
|
|
690
|
-
**The 0n community is growing fast** — building integrations, shipping tools, and pushing the boundaries of what MCP can do.
|
|
691
|
-
|
|
692
|
-
### This is not a side project. This is infrastructure.
|
|
693
|
-
|
|
694
|
-
We ship weekly. The codebase is active. The community is real. If you're building with MCP, you're already one of us.
|
|
695
|
-
|
|
696
|
-
### Join the Community
|
|
697
|
-
|
|
698
|
-
- **[0nmcp.com/community](https://0nmcp.com/community)** — community hub with guides, events, and resources
|
|
699
|
-
- **[GitHub Discussions](https://github.com/0nork/0nMCP/discussions)** — ask questions, share ideas, show off what you built
|
|
700
|
-
- **[Sponsor on GitHub](https://github.com/sponsors/0nork)** — fund the next unlock and get your name on the wall
|
|
701
|
-
- **Star this repo** — it helps more than you think
|
|
702
|
-
- **Submit a PR** — [Contributing Guide](CONTRIBUTING.md)
|
|
703
|
-
- **Learn the .0n Standard** — [0n-spec](https://github.com/0nork/0n-spec)
|
|
704
|
-
|
|
705
|
-
### Community Stats
|
|
706
|
-
|
|
707
|
-
| Metric | |
|
|
708
|
-
|--------|---|
|
|
709
|
-
| **Tools shipped** | 850 |
|
|
710
|
-
| **Services integrated** | 53 |
|
|
711
|
-
| **Categories** | 23 |
|
|
712
|
-
| **CRM endpoints covered** | 245 / 245 (100%) |
|
|
713
|
-
| **npm packages** | 3 ([0nmcp](https://www.npmjs.com/package/0nmcp), [0nork](https://www.npmjs.com/package/0nork), [0n-spec](https://www.npmjs.com/package/0n-spec)) |
|
|
714
|
-
| **Open source repos** | 3 |
|
|
715
|
-
| **Time to first tool call** | ~2 minutes |
|
|
716
|
-
|
|
717
|
-
---
|
|
718
|
-
|
|
719
|
-
## License & Philosophy
|
|
720
|
-
|
|
721
|
-
**MIT Licensed** — free to use, modify, and distribute. See [LICENSE](LICENSE).
|
|
722
|
-
|
|
723
|
-
**Our position:** 0nMCP is and always will be **free and open source**. We built this because we believe AI orchestration is infrastructure — it should be accessible to every developer, not locked behind enterprise paywalls or monthly subscriptions.
|
|
724
|
-
|
|
725
|
-
If you find someone selling this tool, know that **it's free right here**. Always has been, always will be. The entire codebase is open, auditable, and community-maintained.
|
|
726
|
-
|
|
727
|
-
We chose MIT for maximum freedom. Use it in your projects, your products, your startups. But if you build something great with it, **give back to the community** that made it possible. That's the deal.
|
|
728
|
-
|
|
729
|
-
**Trademarks:** The names "0nMCP", "0nORK", and ".0n Standard" are trademarks of RocketOpp. The MIT license grants rights to the software, not to the trademarks. You may not use these names to promote derivative products without permission.
|
|
730
|
-
|
|
731
|
-
---
|
|
732
|
-
|
|
733
|
-
## Contributing
|
|
734
|
-
|
|
735
|
-
We want 0nMCP to be the **open standard** for AI-powered API orchestration.
|
|
306
|
+
## The .0n Standard
|
|
736
307
|
|
|
737
|
-
|
|
738
|
-
- **Add a service** — Drop it in the catalog. See [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
739
|
-
- **Add CRM tools** — Config-driven, takes minutes
|
|
740
|
-
- **Report bugs** — [Open an issue](https://github.com/0nork/0nMCP/issues)
|
|
741
|
-
- **Suggest features** — [Start a discussion](https://github.com/0nork/0nMCP/discussions)
|
|
742
|
-
- **Improve docs** — PRs welcome
|
|
743
|
-
- **Star the repo** — Help others find it
|
|
308
|
+
0nMCP uses the [.0n Standard](https://github.com/0nork/0n-spec) for configuration and workflow files. Install it separately:
|
|
744
309
|
|
|
745
310
|
```bash
|
|
746
|
-
|
|
747
|
-
cd 0nMCP
|
|
748
|
-
npm install
|
|
749
|
-
node index.js
|
|
311
|
+
npm install -g 0n-spec
|
|
750
312
|
```
|
|
751
313
|
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
## The 0n Network
|
|
755
|
-
|
|
756
|
-
0nMCP is part of the **0n Network** — an open ecosystem of AI-native tools built by [0nORK](https://github.com/0nork).
|
|
757
|
-
|
|
758
|
-
| Project | Description |
|
|
759
|
-
|---------|-------------|
|
|
760
|
-
| **[0nMCP](https://0nmcp.com)** | Universal AI API Orchestrator — 850 tools, 53 services, Vault encryption, Business Deed transfer ([source](https://github.com/0nork/0nMCP)) |
|
|
761
|
-
| **[0n-spec](https://github.com/0nork/0n-spec)** | The .0n Standard — universal configuration format for AI orchestration |
|
|
762
|
-
| **[0nork](https://github.com/0nork/0nork)** | The parent org — AI orchestration infrastructure |
|
|
763
|
-
|
|
764
|
-
### Built With
|
|
765
|
-
|
|
766
|
-
- [Anthropic](https://anthropic.com) — Claude and the MCP standard
|
|
767
|
-
- [Model Context Protocol](https://modelcontextprotocol.io) — The protocol that makes this possible
|
|
768
|
-
|
|
769
|
-
### Support the Network
|
|
770
|
-
|
|
771
|
-
0nMCP is free and always will be. If it saves you time or money:
|
|
772
|
-
|
|
773
|
-
<div align="center">
|
|
774
|
-
|
|
775
|
-
**[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-%20850%20tools,%2053%20services,%20zero%20config.%20The%20universal%20AI%20API%20orchestrator.%20Free%20and%20open%20source.&url=https://github.com/0nork/0nMCP)**
|
|
776
|
-
|
|
777
|
-
</div>
|
|
314
|
+
Credentials are stored in `~/.0n/connections/` and workflows in `~/.0n/workflows/`.
|
|
778
315
|
|
|
779
316
|
---
|
|
780
317
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
### Stop building workflows. Start describing outcomes.
|
|
318
|
+
## Links
|
|
784
319
|
|
|
785
|
-
**
|
|
786
|
-
|
|
787
|
-
|
|
320
|
+
- **Website**: [0nmcp.com](https://0nmcp.com)
|
|
321
|
+
- **npm**: [npmjs.com/package/0nmcp](https://www.npmjs.com/package/0nmcp)
|
|
322
|
+
- **GitHub**: [github.com/0nork/0nMCP](https://github.com/0nork/0nMCP)
|
|
323
|
+
- **Community**: [0nmcp.com/community](https://0nmcp.com/community)
|
|
324
|
+
- **Forum**: [0nmcp.com/forum](https://0nmcp.com/forum)
|
|
325
|
+
- **Marketplace**: [marketplace.rocketclients.com](https://marketplace.rocketclients.com)
|
|
788
326
|
|
|
789
327
|
---
|
|
790
328
|
|
|
791
|
-
|
|
329
|
+
## License
|
|
792
330
|
|
|
793
|
-
|
|
331
|
+
MIT -- free for personal and commercial use.
|
|
794
332
|
|
|
795
|
-
|
|
333
|
+
Built by [0nORK](https://0nork.com). Stop building workflows. Start describing outcomes.
|