Skip to content

v1.2.7: Auto-Enable 272 MCP Tools

Choose a tag to compare

@ruvnet ruvnet released this 07 Oct 01:43
c6e1ef0

🚀 What's New in v1.2.7

Auto-Enabled MCP Tools

All MCP servers are now enabled by default, providing immediate access to 272 powerful tools without configuration!

MCP Tools Included:

  • 🔧 claude-flow-sdk: 9 in-SDK tools
  • 🌊 claude-flow: 101 orchestration tools
  • 🔮 flow-nexus: 162 platform tools
  • 💳 agentic-payments: 9 payment tools
  • Total: 272 tools ready to use!

Key Changes

  • ✅ Switched from opt-in to opt-out MCP configuration
  • ✅ All MCP servers load automatically in agent mode
  • ✅ No environment variables required for basic usage
  • ✅ Users can opt-out with ENABLE_*_MCP=false

Migration Guide

Previous Behavior (v1.2.6 and earlier):

# Required explicit opt-in
ENABLE_CLAUDE_FLOW_MCP=true
ENABLE_FLOW_NEXUS_MCP=true
ENABLE_AGENTIC_PAYMENTS_MCP=true

New Behavior (v1.2.7+):

# Enabled by default, no config needed!
# To disable specific servers:
ENABLE_CLAUDE_FLOW_MCP=false
ENABLE_FLOW_NEXUS_MCP=false

Technical Details

Changed environment variable checks in src/agents/claudeAgent.ts:

// Old: Required explicit 'true'
if (process.env.ENABLE_CLAUDE_FLOW_MCP === 'true')

// New: Enabled unless explicitly 'false'
if (process.env.ENABLE_CLAUDE_FLOW_MCP !== 'false')

Installation

# Install latest version
npm install -g agentic-flow@latest

# Or use directly with npx
npx agentic-flow@latest --agent coder --task "your task"

Testing

All 272 MCP tools verified and working:

  • ✅ Agent SDK mode
  • ✅ Claude Code mode
  • ✅ Direct API mode

Files Changed

  • src/agents/claudeAgent.ts - MCP configuration logic
  • package.json - Version bump to 1.2.7

Full Changelog

See CHANGELOG.md for complete details.


Previous Releases:

🤖 Generated with Claude Code