automagik-forge 0.2.5 → 0.2.6

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 (2) hide show
  1. package/bin/cli.js +1 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -219,7 +219,7 @@ function extractAndRun(baseName, launch) {
219
219
 
220
220
  if (isMcpMode || isMcpSseMode) {
221
221
  extractAndRun("automagik-forge-mcp", (bin) => {
222
- const mcpArgs = isMcpSseMode ? ["--mcp-sse"] : [];
222
+ const mcpArgs = isMcpSseMode ? ["--mcp-sse"] : ["--mcp"];
223
223
  console.log(`Starting MCP server with ${isMcpSseMode ? 'SSE + STDIO' : 'STDIO'} transport...`);
224
224
 
225
225
  // Environment variables are already loaded from .env file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "automagik-forge",
3
3
  "private": false,
4
- "version": "0.2.5",
4
+ "version": "0.2.6",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "automagik-forge": "bin/cli.js"