50c 3.0.1 → 3.0.3

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.
Files changed (3) hide show
  1. package/README.md +3 -1
  2. package/bin/50c.js +1 -1
  3. package/package.json +40 -27
package/README.md CHANGED
@@ -113,7 +113,7 @@ Add to your IDE's MCP config:
113
113
  "mcpServers": {
114
114
  "50c": {
115
115
  "command": "npx",
116
- "args": ["-y", "50c"],
116
+ "args": ["-y", "50c@latest"],
117
117
  "env": {
118
118
  "FIFTYC_API_KEY": "<YOUR_API_KEY>"
119
119
  }
@@ -122,6 +122,8 @@ Add to your IDE's MCP config:
122
122
  }
123
123
  ```
124
124
 
125
+ > **Note:** Using `50c@latest` ensures you always get the newest version. For stability, pin to a specific version (e.g., `50c@3.0.3`).
126
+
125
127
  ## Config
126
128
 
127
129
  Config stored in `~/.50c/config.json`:
package/bin/50c.js CHANGED
@@ -764,7 +764,7 @@ function installMCP() {
764
764
 
765
765
  const mcpEntry = {
766
766
  command: 'npx',
767
- args: ['-y', '50c'],
767
+ args: ['-y', '50c@latest'],
768
768
  env: { FIFTYC_API_KEY: API_KEY || '<YOUR_API_KEY>' }
769
769
  };
770
770
 
package/package.json CHANGED
@@ -1,27 +1,40 @@
1
- {
2
- "name": "50c",
3
- "version": "3.0.1",
4
- "description": "50c Hub - One Hub, Many Packs, Infinite Tools. AI developer tools from $0.01-$0.65.",
5
- "bin": {
6
- "50c": "./bin/50c.js"
7
- },
8
- "scripts": {
9
- "postinstall": "node -e \"console.log('\\n50c Hub installed. Run: 50c install\\n')\""
10
- },
11
- "keywords": ["mcp", "ai", "llm", "cli", "agent", "50c", "hints", "genius", "beacon", "developer-tools", "context", "compression"],
12
- "author": "genxis",
13
- "license": "SEE LICENSE IN LICENSE",
14
- "homepage": "https://50c.ai",
15
- "repository": {
16
- "type": "git",
17
- "url": "https://github.com/genxis/50c"
18
- },
19
- "engines": {
20
- "node": ">=18.0.0"
21
- },
22
- "files": [
23
- "bin/",
24
- "README.md",
25
- "LICENSE"
26
- ]
27
- }
1
+ {
2
+ "name": "50c",
3
+ "version": "3.0.3",
4
+ "description": "50c Hub - One Hub, Many Packs, Infinite Tools. AI developer tools from $0.01-$0.65.",
5
+ "bin": {
6
+ "50c": "./bin/50c.js"
7
+ },
8
+ "scripts": {
9
+ "postinstall": "node -e \"console.log('\\n50c Hub installed. Run: 50c install\\n')\""
10
+ },
11
+ "keywords": [
12
+ "mcp",
13
+ "ai",
14
+ "llm",
15
+ "cli",
16
+ "agent",
17
+ "50c",
18
+ "hints",
19
+ "genius",
20
+ "beacon",
21
+ "developer-tools",
22
+ "context",
23
+ "compression"
24
+ ],
25
+ "author": "genxis",
26
+ "license": "SEE LICENSE IN LICENSE",
27
+ "homepage": "https://50c.ai",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/genxis/50c"
31
+ },
32
+ "engines": {
33
+ "node": ">=18.0.0"
34
+ },
35
+ "files": [
36
+ "bin/",
37
+ "README.md",
38
+ "LICENSE"
39
+ ]
40
+ }