50c 2.18.1 → 3.0.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/LICENSE +6 -8
- package/README.md +134 -146
- package/bin/50c.js +2 -13
- package/package.json +10 -32
- package/README.npm.md +0 -226
- package/index.js +0 -14
package/LICENSE
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
PROPRIETARY SOFTWARE LICENSE
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026 genxis.
|
|
3
|
+
Copyright (c) 2026 genxis. All Rights Reserved.
|
|
4
4
|
|
|
5
5
|
This software and associated documentation files (the "Software") are the
|
|
6
|
-
proprietary property of genxis.
|
|
6
|
+
proprietary property of genxis.
|
|
7
7
|
|
|
8
8
|
USAGE TERMS:
|
|
9
|
-
1. You may install and use this Software only with a valid API key
|
|
10
|
-
|
|
11
|
-
2. Each use of the Software requires credits purchased at $0.50 per problem.
|
|
9
|
+
1. You may install and use this Software only with a valid API key.
|
|
10
|
+
2. Each use of the Software requires credits at published rates.
|
|
12
11
|
3. You may NOT copy, modify, merge, publish, distribute, sublicense, or sell
|
|
13
12
|
copies of the Software.
|
|
14
13
|
4. You may NOT reverse engineer, decompile, or disassemble the Software.
|
|
@@ -26,8 +25,7 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
26
25
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
27
26
|
|
|
28
27
|
LIMITATION OF LIABILITY:
|
|
29
|
-
IN NO EVENT SHALL GENXIS
|
|
28
|
+
IN NO EVENT SHALL GENXIS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
30
29
|
LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
Purchase credits: https://50c.ai
|
|
31
|
+
Contact: https://genxis.one
|
package/README.md
CHANGED
|
@@ -1,197 +1,185 @@
|
|
|
1
|
-
# 50c
|
|
1
|
+
# 50c Hub
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**One Hub. Many Packs. Infinite Tools.**
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
[](https://50c.ai)
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
## Install
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
npm install -g 50c
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
---
|
|
5
|
+
AI developer tools from $0.01-$0.65 per call. No subscriptions.
|
|
17
6
|
|
|
18
7
|
## Quick Start
|
|
19
8
|
|
|
20
|
-
### 1. Get API Key
|
|
21
|
-
Visit https://50c.ai and sign up for an API key.
|
|
22
|
-
|
|
23
|
-
### 2. Set Environment Variable
|
|
24
|
-
|
|
25
9
|
```bash
|
|
26
|
-
#
|
|
27
|
-
|
|
10
|
+
# Install
|
|
11
|
+
npx 50c install
|
|
28
12
|
|
|
29
|
-
#
|
|
30
|
-
|
|
13
|
+
# Set API key
|
|
14
|
+
50c config key <your_api_key>
|
|
31
15
|
|
|
32
|
-
#
|
|
33
|
-
|
|
16
|
+
# Use tools
|
|
17
|
+
50c hints "api design"
|
|
18
|
+
50c genius "solve this algorithm"
|
|
19
|
+
50c beacon.compress "long context here..."
|
|
34
20
|
```
|
|
35
21
|
|
|
36
|
-
|
|
22
|
+
Get your API key at [50c.ai](https://50c.ai)
|
|
37
23
|
|
|
38
|
-
|
|
39
|
-
npx 50c check_balance
|
|
40
|
-
npx 50c genius --problem="How do I optimize database queries?"
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
---
|
|
24
|
+
## Packs
|
|
44
25
|
|
|
45
|
-
|
|
26
|
+
| Pack | Tools | Price Range |
|
|
27
|
+
|------|-------|-------------|
|
|
28
|
+
| **core** | hints, vibe, roast, name-it, price-it, one-liner | $0.02-$0.10 |
|
|
29
|
+
| **labs** | genius, genius+, compute, mind-opener | $0.02-$0.65 |
|
|
30
|
+
| **beacon** | health, compress, extract, mint, recall, checkpoint | FREE-$0.02 |
|
|
31
|
+
| **router** | compare, battle (multi-model) | $0.05-$0.10 |
|
|
46
32
|
|
|
47
|
-
|
|
48
|
-
Build tool batches automatically.
|
|
33
|
+
## Commands
|
|
49
34
|
|
|
35
|
+
### Hub Management
|
|
50
36
|
```bash
|
|
51
|
-
|
|
37
|
+
50c status # Hub status + connectivity
|
|
38
|
+
50c packs # List enabled packs
|
|
39
|
+
50c search [query] # Find packs/tools
|
|
40
|
+
50c add <pack> # Enable a pack
|
|
41
|
+
50c remove <pack> # Disable a pack
|
|
42
|
+
50c balance # Check credit balance
|
|
52
43
|
```
|
|
53
44
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
### 50c-AO (Automate + Oversight)
|
|
57
|
-
Build with AI quality review.
|
|
58
|
-
|
|
45
|
+
### Core Tools
|
|
59
46
|
```bash
|
|
60
|
-
|
|
47
|
+
50c hints "topic" # 5 brutal hints ($0.05)
|
|
48
|
+
50c hints+ "topic" # 10 expanded hints ($0.10)
|
|
49
|
+
50c vibe "working on" # 3 unconventional ideas ($0.05)
|
|
50
|
+
50c roast "code" # Brutal code review ($0.05)
|
|
51
|
+
50c name-it "what it does"# 5 names + domain check ($0.03)
|
|
52
|
+
50c price-it "product" # SaaS pricing strategy ($0.05)
|
|
53
|
+
50c one-liner "product" # Elevator pitch in 8 words ($0.02)
|
|
61
54
|
```
|
|
62
55
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### 50c-SD (Suggest + Decide)
|
|
66
|
-
AI makes architectural decisions.
|
|
67
|
-
|
|
56
|
+
### Labs Tools
|
|
68
57
|
```bash
|
|
69
|
-
|
|
58
|
+
50c genius "problem" # Deep problem solving ($0.50)
|
|
59
|
+
50c compute "python code" # Python sandbox ($0.02)
|
|
70
60
|
```
|
|
71
61
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### 50c-SA (Suggest + Automate)
|
|
75
|
-
Self-driving assistant that chains tools.
|
|
76
|
-
|
|
62
|
+
### Beacon Tools (Context Intelligence)
|
|
77
63
|
```bash
|
|
78
|
-
|
|
64
|
+
50c beacon.health # Context health check (FREE)
|
|
65
|
+
50c beacon.compress "text"# Smart compression ($0.02)
|
|
66
|
+
50c beacon.extract "text" # Extract decisions ($0.02)
|
|
67
|
+
50c beacon.mint "content" # Permanent memory ($0.01)
|
|
68
|
+
50c beacon.recall [query] # Read memories (FREE)
|
|
79
69
|
```
|
|
80
70
|
|
|
81
|
-
|
|
71
|
+
### Feedback Loop
|
|
72
|
+
```bash
|
|
73
|
+
50c tip [amount] [reason] # Tip (builds refund pool)
|
|
74
|
+
50c notip <tool> <reason> # Report bad result (get refund)
|
|
75
|
+
50c mint "content" # Save to permanent memory
|
|
76
|
+
```
|
|
82
77
|
|
|
83
|
-
|
|
78
|
+
## Tip Economics
|
|
84
79
|
|
|
85
|
-
|
|
80
|
+
Your tips fund two things:
|
|
81
|
+
- **60%** → Your refund pool (safety net for bad results)
|
|
82
|
+
- **40%** → Infrastructure (keeps free tier alive globally)
|
|
86
83
|
|
|
87
|
-
|
|
88
|
-
|
|
84
|
+
When a tool gives bad results, use `notip` to:
|
|
85
|
+
1. Get a refund from your tip pool
|
|
86
|
+
2. Log feedback (helps improve the system)
|
|
87
|
+
3. Get diagnostic suggestions
|
|
89
88
|
|
|
90
|
-
|
|
91
|
-
npx 50c cf_list_zones
|
|
92
|
-
npx 50c cf_create_dns --zone-id=abc123 --name=api --content=1.2.3.4
|
|
93
|
-
npx 50c cf_ssl_mode --zone-id=abc123 --mode=full
|
|
94
|
-
npx 50c cf_purge_cache --zone-id=abc123 --purge_everything=true
|
|
95
|
-
```
|
|
89
|
+
## MCP Integration
|
|
96
90
|
|
|
97
|
-
|
|
98
|
-
Server management, account operations, backups, email, databases, SSL automation.
|
|
91
|
+
50c works as an MCP (Model Context Protocol) server for AI IDEs:
|
|
99
92
|
|
|
100
93
|
```bash
|
|
101
|
-
npx 50c
|
|
102
|
-
npx 50c whm_create_account --username=example --domain=example.com
|
|
103
|
-
npx 50c whm_create_backup --user=example
|
|
104
|
-
npx 50c whm_autossl_run --user=example
|
|
94
|
+
npx 50c install # Auto-configure for your IDE
|
|
105
95
|
```
|
|
106
96
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
97
|
+
Supported IDEs:
|
|
98
|
+
- Claude Desktop
|
|
99
|
+
- Cursor
|
|
100
|
+
- Windsurf
|
|
101
|
+
- VS Code
|
|
102
|
+
- Verdent
|
|
103
|
+
- Roo Code
|
|
104
|
+
- Continue
|
|
105
|
+
- Cline
|
|
106
|
+
|
|
107
|
+
### Manual Configuration
|
|
108
|
+
|
|
109
|
+
Add to your IDE's MCP config:
|
|
110
|
+
|
|
111
|
+
```json
|
|
112
|
+
{
|
|
113
|
+
"mcpServers": {
|
|
114
|
+
"50c": {
|
|
115
|
+
"command": "npx",
|
|
116
|
+
"args": ["-y", "50c"],
|
|
117
|
+
"env": {
|
|
118
|
+
"FIFTYC_API_KEY": "<YOUR_API_KEY>"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
114
123
|
```
|
|
115
124
|
|
|
116
|
-
|
|
117
|
-
Workflow automation, execution management, credential handling.
|
|
125
|
+
## Config
|
|
118
126
|
|
|
119
|
-
|
|
120
|
-
npx 50c n8n_list_workflows
|
|
121
|
-
npx 50c n8n_create_workflow --name="My Workflow" --nodes='[...]'
|
|
122
|
-
npx 50c n8n_activate_workflow --id=123
|
|
123
|
-
```
|
|
127
|
+
Config stored in `~/.50c/config.json`:
|
|
124
128
|
|
|
125
|
-
|
|
126
|
-
|
|
129
|
+
```json
|
|
130
|
+
{
|
|
131
|
+
"api_key": "cv_xxx",
|
|
132
|
+
"packs": ["core", "beacon", "labs"]
|
|
133
|
+
}
|
|
134
|
+
```
|
|
127
135
|
|
|
136
|
+
Set via CLI:
|
|
128
137
|
```bash
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
npx 50c ux_roast --html="<html>...</html>"
|
|
132
|
-
npx 50c ux_ab_winner --html_a="<div>A</div>" --html_b="<div>B</div>"
|
|
138
|
+
50c config key <api_key>
|
|
139
|
+
50c config show
|
|
133
140
|
```
|
|
134
141
|
|
|
135
|
-
|
|
136
|
-
|
|
142
|
+
Or via environment:
|
|
137
143
|
```bash
|
|
138
|
-
|
|
139
|
-
npx 50c genius --problem="How do I scale to 1M users?" --research=true
|
|
140
|
-
|
|
141
|
-
# Brutal code review (3 flaws + fixes)
|
|
142
|
-
npx 50c roast --code="$(cat app.py)"
|
|
143
|
-
|
|
144
|
-
# Quick hints (5 hints, 2 words each)
|
|
145
|
-
npx 50c hints --query="Why is my API slow?"
|
|
146
|
-
|
|
147
|
-
# Context-based suggestions
|
|
148
|
-
npx 50c suggest --recent-messages='["Added auth", "Need tests"]'
|
|
149
|
-
|
|
150
|
-
# Name your product
|
|
151
|
-
npx 50c name_it --does="AI-powered code review"
|
|
152
|
-
|
|
153
|
-
# Price your SaaS
|
|
154
|
-
npx 50c price_it --product="Developer tools platform"
|
|
144
|
+
export FIFTYC_API_KEY=cv_xxx
|
|
155
145
|
```
|
|
156
146
|
|
|
157
|
-
---
|
|
158
|
-
|
|
159
147
|
## Pricing
|
|
160
148
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
- **
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
##
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
149
|
+
- **Free tier**: health, recall tools (no API key needed)
|
|
150
|
+
- **Pay-per-use**: 1 credit = $0.01
|
|
151
|
+
- **No subscriptions**: Top up when you need, credits never expire
|
|
152
|
+
|
|
153
|
+
## All Tools
|
|
154
|
+
|
|
155
|
+
| Tool | Pack | Cost | Description |
|
|
156
|
+
|------|------|------|-------------|
|
|
157
|
+
| `hints` | core | $0.05 | 5 brutal 2-word hints |
|
|
158
|
+
| `hints+` | core | $0.10 | 10 expanded hints |
|
|
159
|
+
| `vibe` | core | $0.05 | 3 unconventional ideas |
|
|
160
|
+
| `one-liner` | core | $0.02 | 8-word elevator pitch |
|
|
161
|
+
| `roast` | core | $0.05 | Brutal code review |
|
|
162
|
+
| `name-it` | core | $0.03 | 5 names + domain check |
|
|
163
|
+
| `price-it` | core | $0.05 | SaaS pricing strategy |
|
|
164
|
+
| `genius` | labs | $0.50 | Deep problem solving |
|
|
165
|
+
| `genius+` | labs | $0.65 | Self-improving code gen |
|
|
166
|
+
| `compute` | labs | $0.02 | Python sandbox |
|
|
167
|
+
| `mind-opener` | labs | $0.08 | 5 curious angles |
|
|
168
|
+
| `health` | beacon | FREE | Context health check |
|
|
169
|
+
| `compress` | beacon | $0.02 | Smart compression |
|
|
170
|
+
| `extract` | beacon | $0.02 | Extract decisions/entities |
|
|
171
|
+
| `mint` | beacon | $0.01 | Permanent memory |
|
|
172
|
+
| `recall` | beacon | FREE | Read memories |
|
|
173
|
+
| `checkpoint` | beacon | $0.02 | Save conversation state |
|
|
174
|
+
| `compare` | router | $0.05 | Multi-model comparison |
|
|
175
|
+
| `battle` | router | $0.10 | Model head-to-head |
|
|
176
|
+
|
|
177
|
+
## Links
|
|
178
|
+
|
|
179
|
+
- Website: https://50c.ai
|
|
180
|
+
- Docs: https://docs.50c.ai
|
|
181
|
+
- GitHub: https://github.com/genxis/50c
|
|
194
182
|
|
|
195
183
|
---
|
|
196
184
|
|
|
197
|
-
|
|
185
|
+
*"One Hub. Many Packs. Infinite Tools."*
|
package/bin/50c.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
3
|
* 50c Hub v3 - One Hub, Many Packs, Infinite Tools
|
|
4
4
|
*
|
|
@@ -759,7 +759,7 @@ function installMCP() {
|
|
|
759
759
|
{ name: 'Roo Code', path: path.join(home, '.roo-code', 'mcp.json'), key: 'mcpServers' },
|
|
760
760
|
{ name: 'Continue', path: path.join(home, '.continue', 'mcp.json'), key: 'mcpServers' },
|
|
761
761
|
{ name: 'Cline', path: path.join(home, '.cline', 'mcp.json'), key: 'mcpServers' },
|
|
762
|
-
{ name: '
|
|
762
|
+
{ name: 'JetBrains', path: isWin ? path.join(appData, 'JetBrains', 'mcp.json') : path.join(home, '.config', 'JetBrains', 'mcp.json'), key: 'mcpServers' },
|
|
763
763
|
].filter(ide => ide.path);
|
|
764
764
|
|
|
765
765
|
const mcpEntry = {
|
|
@@ -874,17 +874,6 @@ EXAMPLES:
|
|
|
874
874
|
|
|
875
875
|
MCP MODE:
|
|
876
876
|
50c Start JSON-RPC mode for IDEs
|
|
877
|
-
|
|
878
|
-
MEMEX USERS:
|
|
879
|
-
In Memex chat, run:
|
|
880
|
-
mcp_manage_server(
|
|
881
|
-
operation="create",
|
|
882
|
-
server_name="50c",
|
|
883
|
-
runtime="npx",
|
|
884
|
-
args=["-y", "50c"],
|
|
885
|
-
env={"FIFTYC_API_KEY": "your_key"}
|
|
886
|
-
)
|
|
887
|
-
Then restart Memex.
|
|
888
877
|
`);
|
|
889
878
|
}
|
|
890
879
|
|
package/package.json
CHANGED
|
@@ -1,41 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "50c",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"main": "index.js",
|
|
3
|
+
"version": "3.0.1",
|
|
4
|
+
"description": "50c Hub - One Hub, Many Packs, Infinite Tools. AI developer tools from $0.01-$0.65.",
|
|
6
5
|
"bin": {
|
|
7
6
|
"50c": "./bin/50c.js"
|
|
8
7
|
},
|
|
9
8
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
"postinstall": "node -e \"console.log('\\n💰 Buy credits at https://50c.ai\\n125 tools: Cloudflare, WHM, WordPress, n8n, UX\\nAutomation: 50c-A, 50c-AO, 50c-SD, 50c-SA\\n')\""
|
|
9
|
+
"postinstall": "node -e \"console.log('\\n50c Hub installed. Run: 50c install\\n')\""
|
|
12
10
|
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
|
|
15
|
-
"ai",
|
|
16
|
-
"automation",
|
|
17
|
-
"cloudflare",
|
|
18
|
-
"cloudflare-api",
|
|
19
|
-
"whm",
|
|
20
|
-
"cpanel",
|
|
21
|
-
"wordpress",
|
|
22
|
-
"wordpress-automation",
|
|
23
|
-
"n8n",
|
|
24
|
-
"n8n-workflows",
|
|
25
|
-
"ux-testing",
|
|
26
|
-
"accessibility",
|
|
27
|
-
"design-tools",
|
|
28
|
-
"batch-automation",
|
|
29
|
-
"ai-oversight",
|
|
30
|
-
"decision-engine",
|
|
31
|
-
"self-driving",
|
|
32
|
-
"devops",
|
|
33
|
-
"infrastructure",
|
|
34
|
-
"api-key-required"
|
|
35
|
-
],
|
|
36
|
-
"author": "genxis.com",
|
|
11
|
+
"keywords": ["mcp", "ai", "llm", "cli", "agent", "50c", "hints", "genius", "beacon", "developer-tools", "context", "compression"],
|
|
12
|
+
"author": "genxis",
|
|
37
13
|
"license": "SEE LICENSE IN LICENSE",
|
|
38
14
|
"homepage": "https://50c.ai",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/genxis/50c"
|
|
18
|
+
},
|
|
39
19
|
"engines": {
|
|
40
20
|
"node": ">=18.0.0"
|
|
41
21
|
},
|
|
@@ -43,7 +23,5 @@
|
|
|
43
23
|
"bin/",
|
|
44
24
|
"README.md",
|
|
45
25
|
"LICENSE"
|
|
46
|
-
]
|
|
47
|
-
"dependencies": {},
|
|
48
|
-
"devDependencies": {}
|
|
26
|
+
]
|
|
49
27
|
}
|
package/README.npm.md
DELETED
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
# 50c - Genius Problem Solving for Any IDE
|
|
2
|
-
|
|
3
|
-
**"Our Two Cents is Worth Fifty"**
|
|
4
|
-
|
|
5
|
-
**$0.50 per problem solved**
|
|
6
|
-
|
|
7
|
-
A Model Context Protocol (MCP) server that augments ANY AI with genius-level problem solving.
|
|
8
|
-
**Product of [genxis.com](https://genxis.com)**
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
## 💰 Pricing: $0.50 per Problem
|
|
13
|
-
|
|
14
|
-
**Pay only for problems you solve. No subscriptions.**
|
|
15
|
-
|
|
16
|
-
### Buy Credits:
|
|
17
|
-
👉 **https://50c.ai**
|
|
18
|
-
|
|
19
|
-
**Plans:**
|
|
20
|
-
- 🟢 Starter: $5 = 10 problems
|
|
21
|
-
- 🔵 Developer: $25 = 50 problems (Most Popular)
|
|
22
|
-
- 🟣 Pro: $100 = 200 problems
|
|
23
|
-
- 🟠 Team: $500 = 1000 problems
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
## 🚀 Quick Start
|
|
28
|
-
|
|
29
|
-
### 1. Buy Credits
|
|
30
|
-
Visit https://50c.ai and purchase credits
|
|
31
|
-
|
|
32
|
-
### 2. Install
|
|
33
|
-
```bash
|
|
34
|
-
npm install -g 50c
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
### 3. Configure
|
|
38
|
-
Set your API key as an environment variable:
|
|
39
|
-
|
|
40
|
-
**Windows (PowerShell):**
|
|
41
|
-
```powershell
|
|
42
|
-
$env:FIFTYC_API_KEY = "your_key_here"
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
**Linux/Mac:**
|
|
46
|
-
```bash
|
|
47
|
-
export FIFTYC_API_KEY="your_key_here"
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
**Persistent (recommended):**
|
|
51
|
-
Add to your `.env` file or system environment variables
|
|
52
|
-
|
|
53
|
-
### 4. Install to Your IDE
|
|
54
|
-
|
|
55
|
-
**Auto-install (Claude Desktop, Cursor, Windsurf, Cline, VS Code):**
|
|
56
|
-
```bash
|
|
57
|
-
npx 50c install
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
**Manual setup for Memex:**
|
|
61
|
-
```bash
|
|
62
|
-
# In Memex chat
|
|
63
|
-
mcp_manage_server(
|
|
64
|
-
operation="create",
|
|
65
|
-
server_name="50c",
|
|
66
|
-
runtime="npx",
|
|
67
|
-
args=["-y", "50c"],
|
|
68
|
-
env={"FIFTYC_API_KEY": "your_key_here"}
|
|
69
|
-
)
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
**Manual setup for Claude Desktop / other MCP clients:**
|
|
73
|
-
Add to `claude_desktop_config.json`:
|
|
74
|
-
```json
|
|
75
|
-
{
|
|
76
|
-
"mcpServers": {
|
|
77
|
-
"50c": {
|
|
78
|
-
"command": "npx",
|
|
79
|
-
"args": ["-y", "50c"],
|
|
80
|
-
"env": {
|
|
81
|
-
"FIFTYC_API_KEY": "your_key_here"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
Restart your IDE to activate.
|
|
89
|
-
|
|
90
|
-
---
|
|
91
|
-
|
|
92
|
-
## 💎 Available Tools
|
|
93
|
-
|
|
94
|
-
### `genius_mode`
|
|
95
|
-
Omni-mode problem solver with multi-step reasoning
|
|
96
|
-
- **Cost:** $0.50 (1 credit)
|
|
97
|
-
- **Use for:** Complex problems, strategic decisions, technical challenges
|
|
98
|
-
|
|
99
|
-
### `augment_thinking`
|
|
100
|
-
Revolutionary idea injection with 6 thinking modes
|
|
101
|
-
- **Cost:** $0.50 (1 credit)
|
|
102
|
-
- **Use for:** Breaking through creative blocks, paradigm shifts
|
|
103
|
-
|
|
104
|
-
### `quick_vibe`
|
|
105
|
-
Rapid insight injection for instant inspiration
|
|
106
|
-
- **Cost:** $0.50 (1 credit)
|
|
107
|
-
- **Use for:** Quick ideas, rapid brainstorming
|
|
108
|
-
|
|
109
|
-
### `check_balance`
|
|
110
|
-
Check your credit balance and usage
|
|
111
|
-
- **Cost:** FREE
|
|
112
|
-
- **Returns:** Credits remaining, total spent, value remaining
|
|
113
|
-
|
|
114
|
-
---
|
|
115
|
-
|
|
116
|
-
## 🎯 What is 50c?
|
|
117
|
-
|
|
118
|
-
We're **NOT** another AI model.
|
|
119
|
-
|
|
120
|
-
We're the **intelligence layer** that makes ANY AI better:
|
|
121
|
-
|
|
122
|
-
✅ **Model Agnostic** - Works with OpenAI, Claude, Gemini, Mistral, DeepSeek, etc.
|
|
123
|
-
✅ **Augmentation Layer** - Enhances existing AI, doesn't replace it
|
|
124
|
-
✅ **Agentic Capabilities** - Tools, orchestration, multi-step reasoning
|
|
125
|
-
✅ **MCP Integration** - Standard protocol, works everywhere
|
|
126
|
-
|
|
127
|
-
### Why Pay?
|
|
128
|
-
- 💡 Genius-level problem solving, not just chat
|
|
129
|
-
- 🛠️ Advanced multi-step reasoning
|
|
130
|
-
- 🧠 Genxis Brain Agent intelligence
|
|
131
|
-
- 🎯 Fair pricing: Only pay for what you use
|
|
132
|
-
|
|
133
|
-
**Simple Pricing:**
|
|
134
|
-
$0.50 per problem. No subscriptions. No hidden fees.
|
|
135
|
-
|
|
136
|
-
---
|
|
137
|
-
|
|
138
|
-
## 🏗️ Technical Details
|
|
139
|
-
|
|
140
|
-
### Requirements
|
|
141
|
-
- Node.js 18+
|
|
142
|
-
- Python 3.10+
|
|
143
|
-
- Valid API key from genxis.com
|
|
144
|
-
|
|
145
|
-
### Python Dependencies
|
|
146
|
-
Automatically installed on first run:
|
|
147
|
-
- `mcp>=1.0.0`
|
|
148
|
-
- `mistralai>=1.0.0`
|
|
149
|
-
- `python-dotenv>=1.0.0`
|
|
150
|
-
|
|
151
|
-
### Security
|
|
152
|
-
- HMAC-SHA256 key validation
|
|
153
|
-
- Server-side usage tracking
|
|
154
|
-
- No key storage in npm package
|
|
155
|
-
- Keys validated against genxis.com servers
|
|
156
|
-
|
|
157
|
-
---
|
|
158
|
-
|
|
159
|
-
## 📖 Example Usage
|
|
160
|
-
|
|
161
|
-
```javascript
|
|
162
|
-
// In Memex or Claude Desktop after setup
|
|
163
|
-
|
|
164
|
-
// Solve complex problems
|
|
165
|
-
genius_mode({
|
|
166
|
-
problem: "How do I scale my API to handle 1M requests/day?",
|
|
167
|
-
constraints: ["Budget: <$1000/month", "Current: single server"],
|
|
168
|
-
max_complexity: "high"
|
|
169
|
-
})
|
|
170
|
-
|
|
171
|
-
// Get revolutionary ideas
|
|
172
|
-
augment_thinking({
|
|
173
|
-
current_context: "Building a SaaS for developers",
|
|
174
|
-
mode: "paradigm_shift",
|
|
175
|
-
intensity: 0.9
|
|
176
|
-
})
|
|
177
|
-
|
|
178
|
-
// Quick inspiration
|
|
179
|
-
quick_vibe({
|
|
180
|
-
working_on: "Landing page design for AI tool"
|
|
181
|
-
})
|
|
182
|
-
|
|
183
|
-
// Check status
|
|
184
|
-
check_balance()
|
|
185
|
-
```
|
|
186
|
-
|
|
187
|
-
---
|
|
188
|
-
|
|
189
|
-
## 🌐 Links
|
|
190
|
-
|
|
191
|
-
- **Homepage:** https://50c.ai
|
|
192
|
-
- **Get API Key:** https://50c.ai
|
|
193
|
-
- **Platform:** https://50c.ai
|
|
194
|
-
- **Documentation:** https://50c.ai/docs
|
|
195
|
-
- **Company:** https://genxis.com
|
|
196
|
-
|
|
197
|
-
---
|
|
198
|
-
|
|
199
|
-
## 📄 License
|
|
200
|
-
|
|
201
|
-
MIT License - Copyright (c) 2026 genxis.com
|
|
202
|
-
|
|
203
|
-
---
|
|
204
|
-
|
|
205
|
-
## ⚠️ Important Notes
|
|
206
|
-
|
|
207
|
-
1. **API key is required** - Get yours at https://50c.ai
|
|
208
|
-
2. **Beta keys are free** - No credit card required during beta
|
|
209
|
-
3. **Usage tracking** - Keys track usage server-side for fair billing
|
|
210
|
-
4. **No refunds on paid keys** - Beta keys expire when beta ends
|
|
211
|
-
|
|
212
|
-
---
|
|
213
|
-
|
|
214
|
-
## 🔐 Security & Privacy
|
|
215
|
-
|
|
216
|
-
- API keys validated server-side only
|
|
217
|
-
- No sensitive data stored in package
|
|
218
|
-
- All requests encrypted (HTTPS)
|
|
219
|
-
- Keys can be deactivated instantly at genxis.com
|
|
220
|
-
- Usage tracked for billing transparency
|
|
221
|
-
|
|
222
|
-
---
|
|
223
|
-
|
|
224
|
-
**Built by genxis.com | Powered by Genxis Brain Agent**
|
|
225
|
-
|
|
226
|
-
*"Augmenting and Partner Intelligence"* 🚀
|
package/index.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 50c.ai MCP Server
|
|
3
|
-
* "Our Two Cents is Worth Fifty"
|
|
4
|
-
*
|
|
5
|
-
* This package provides an MCP (Model Context Protocol) server
|
|
6
|
-
* that augments AI capabilities with advanced tools and intelligence.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
module.exports = {
|
|
10
|
-
name: '50c',
|
|
11
|
-
version: require('./package.json').version,
|
|
12
|
-
description: 'AI Augmentation & Partner Intelligence',
|
|
13
|
-
server: './bin/50c.js'
|
|
14
|
-
};
|