@mcpc-tech/cli 0.1.28 → 0.1.30
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 +12 -4
- package/bin/mcpc.cjs +475 -2289
- package/bin/mcpc.mjs +475 -2289
- package/package.json +2 -2
- package/types/src/config/loader.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -161,13 +161,21 @@ mcpc --wrap --mode agentic --name "smart-assistant" \
|
|
|
161
161
|
--mcp-stdio "npx -y @wonderwhy-er/desktop-commander"
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
#### `
|
|
164
|
+
#### `ai_sampling`
|
|
165
165
|
|
|
166
|
-
|
|
167
|
-
follows a workflow pattern with specific actions at each step.
|
|
166
|
+
Autonomous execution using AI SDK with MCP sampling provider.
|
|
168
167
|
|
|
169
168
|
```bash
|
|
170
|
-
mcpc --wrap --mode
|
|
169
|
+
mcpc --wrap --mode ai_sampling --name "autonomous-agent" \
|
|
170
|
+
--mcp-stdio "npx -y @wonderwhy-er/desktop-commander"
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
#### `ai_acp`
|
|
174
|
+
|
|
175
|
+
AI SDK ACP mode for coding agents like Claude Code.
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
mcpc --wrap --mode ai_acp --name "coding-agent" \
|
|
171
179
|
--mcp-stdio "npx -y @wonderwhy-er/desktop-commander"
|
|
172
180
|
```
|
|
173
181
|
|