par5-mcp 0.1.2 → 0.2.0

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.1.2"
2
+ ".": "0.2.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0](https://github.com/jrandolf/par5-mcp/compare/v0.1.2...v0.2.0) (2025-12-30)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * only return text
9
+
10
+ ### Bug Fixes
11
+
12
+ * only return text ([0b73afd](https://github.com/jrandolf/par5-mcp/commit/0b73afdadcb71c583ea87958ef89e920d7517d8e))
13
+
3
14
  ## [0.1.2](https://github.com/jrandolf/par5-mcp/compare/v0.1.1...v0.1.2) (2025-12-30)
4
15
 
5
16
 
package/dist/index.js CHANGED
@@ -549,12 +549,12 @@ VARIABLE SUBSTITUTION:
549
549
  case "claude": {
550
550
  // Claude Code CLI with --dangerously-skip-permissions and streaming output
551
551
  const claudeArgs = process.env.PAR5_CLAUDE_ARGS || "";
552
- return `claude --dangerously-skip-permissions --output-format stream-json --verbose ${agentArgs} ${claudeArgs} -p '${escapedPrompt}'`;
552
+ return `claude --dangerously-skip-permissions --output-format text --verbose ${agentArgs} ${claudeArgs} -p '${escapedPrompt}'`;
553
553
  }
554
554
  case "gemini": {
555
555
  // Gemini CLI with yolo mode and streaming JSON output
556
556
  const geminiArgs = process.env.PAR5_GEMINI_ARGS || "";
557
- return `gemini --yolo --output-format stream-json ${agentArgs} ${geminiArgs} '${escapedPrompt}'`;
557
+ return `gemini --yolo --output-format text ${agentArgs} ${geminiArgs} '${escapedPrompt}'`;
558
558
  }
559
559
  case "codex": {
560
560
  // Codex CLI exec subcommand with full-auto flag and JSON streaming output
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "par5-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "MCP server for parallel list operations - run shell commands and AI agents across lists in parallel",
5
5
  "main": "dist/index.js",
6
6
  "bin": {