@venumdev/mcp 0.1.0 → 0.1.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/README.md CHANGED
@@ -36,6 +36,8 @@ This repo is the MCP-native part of that OSS surface.
36
36
 
37
37
  ## Install
38
38
 
39
+ `@venumdev/mcp` shells out to `@venumdev/cli` internally. If you run it with `pnpm dlx @venumdev/mcp`, the CLI dependency is handled automatically. If you run from a checked-out repo, install dependencies first with `pnpm install`.
40
+
39
41
  Run without installing:
40
42
 
41
43
  ```bash
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venumdev/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Venum, the Solana execution layer for coding agents and trading agents. Designed to work with Venum Skills.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -19,15 +19,6 @@
19
19
  "dist",
20
20
  "README.md"
21
21
  ],
22
- "scripts": {
23
- "start": "tsx src/index.ts",
24
- "dev": "tsx src/index.ts",
25
- "build": "tsc -p tsconfig.json",
26
- "check": "tsc -p tsconfig.json --noEmit",
27
- "publint": "publint",
28
- "prepack": "pnpm build",
29
- "prepublishOnly": "pnpm build"
30
- },
31
22
  "engines": {
32
23
  "node": ">=22.0.0"
33
24
  },
@@ -60,5 +51,12 @@
60
51
  "publint": "^0.3.18",
61
52
  "tsx": "^4.20.5",
62
53
  "typescript": "^5.9.2"
54
+ },
55
+ "scripts": {
56
+ "start": "tsx src/index.ts",
57
+ "dev": "tsx src/index.ts",
58
+ "build": "tsc -p tsconfig.json",
59
+ "check": "tsc -p tsconfig.json --noEmit",
60
+ "publint": "publint"
63
61
  }
64
- }
62
+ }