@mcpc-tech/cli 0.1.4 → 0.1.5
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 +10 -1
- package/bin/mcpc.mjs +1000 -93533
- package/package.json +16 -2
- package/types/src/app.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
# MCPC CLI
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@mcpc-tech/cli)
|
|
4
|
+
[](https://jsr.io/@mcpc/cli)
|
|
5
|
+
|
|
3
6
|
CLI server for MCPC with configuration support.
|
|
4
7
|
|
|
8
|
+
> **Note:** This package is published as `@mcpc-tech/cli` on npm and `@mcpc/cli`
|
|
9
|
+
> on JSR.
|
|
10
|
+
|
|
5
11
|
## Quick Start
|
|
6
12
|
|
|
7
13
|
```bash
|
|
8
|
-
#
|
|
14
|
+
# Using npm
|
|
15
|
+
npx -y @mcpc-tech/cli --help
|
|
16
|
+
|
|
17
|
+
# Using JSR
|
|
9
18
|
npx -y deno run -A jsr:@mcpc/cli/bin --help
|
|
10
19
|
|
|
11
20
|
# Load configuration from URL
|