agentic-flow 1.2.6 → 1.2.7

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.
@@ -103,13 +103,13 @@ export async function claudeAgent(agent, input, onStream, modelOverride) {
103
103
  try {
104
104
  // MCP server setup - enable in-SDK server and optional external servers
105
105
  const mcpServers = {};
106
- // Enable in-SDK MCP server for custom tools
107
- if (process.env.ENABLE_CLAUDE_FLOW_SDK === 'true') {
106
+ // Enable in-SDK MCP server for custom tools (enabled by default)
107
+ if (process.env.ENABLE_CLAUDE_FLOW_SDK !== 'false') {
108
108
  mcpServers['claude-flow-sdk'] = claudeFlowSdkServer;
109
109
  }
110
- // Optional external MCP servers (disabled by default to avoid subprocess failures)
111
- // Enable by setting ENABLE_CLAUDE_FLOW_MCP=true or ENABLE_FLOW_NEXUS_MCP=true
112
- if (process.env.ENABLE_CLAUDE_FLOW_MCP === 'true') {
110
+ // External MCP servers (enabled by default for full 213-tool access)
111
+ // Disable by setting ENABLE_CLAUDE_FLOW_MCP=false
112
+ if (process.env.ENABLE_CLAUDE_FLOW_MCP !== 'false') {
113
113
  mcpServers['claude-flow'] = {
114
114
  type: 'stdio',
115
115
  command: 'npx',
@@ -121,7 +121,7 @@ export async function claudeAgent(agent, input, onStream, modelOverride) {
121
121
  }
122
122
  };
123
123
  }
124
- if (process.env.ENABLE_FLOW_NEXUS_MCP === 'true') {
124
+ if (process.env.ENABLE_FLOW_NEXUS_MCP !== 'false') {
125
125
  mcpServers['flow-nexus'] = {
126
126
  type: 'stdio',
127
127
  command: 'npx',
@@ -132,7 +132,7 @@ export async function claudeAgent(agent, input, onStream, modelOverride) {
132
132
  }
133
133
  };
134
134
  }
135
- if (process.env.ENABLE_AGENTIC_PAYMENTS_MCP === 'true') {
135
+ if (process.env.ENABLE_AGENTIC_PAYMENTS_MCP !== 'false') {
136
136
  mcpServers['agentic-payments'] = {
137
137
  type: 'stdio',
138
138
  command: 'npx',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-flow",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",