agentic-flow 1.1.14 → 1.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.
@@ -0,0 +1,336 @@
1
+ # v1.1.14-beta.1 Release Summary
2
+
3
+ **Date:** 2025-10-05
4
+ **Status:** ✅ **PUBLISHED & LIVE**
5
+ **NPM:** https://www.npmjs.com/package/agentic-flow/v/1.1.14-beta.1
6
+ **GitHub:** https://github.com/ruvnet/agentic-flow/releases/tag/v1.1.14-beta.1
7
+
8
+ ---
9
+
10
+ ## 🎉 Major Achievement
11
+
12
+ **Fixed critical OpenRouter proxy bug that was causing 100% failure rate!**
13
+
14
+ From **0% success** → **80% success** (8 out of 10 models working)
15
+
16
+ ---
17
+
18
+ ## Installation & Usage
19
+
20
+ ### Install Beta Version
21
+ ```bash
22
+ # Install globally
23
+ npm install -g agentic-flow@beta
24
+
25
+ # Or use with npx (no installation needed)
26
+ npx agentic-flow@beta --help
27
+ ```
28
+
29
+ ### Quick Start
30
+ ```bash
31
+ # List available agents
32
+ npx agentic-flow@beta --list
33
+
34
+ # Run with Anthropic (default)
35
+ npx agentic-flow@beta --agent coder --task "Write Python hello world"
36
+
37
+ # Run with OpenRouter (99% cost savings!)
38
+ npx agentic-flow@beta --agent coder --task "Write Python hello world" \
39
+ --provider openrouter --model "openai/gpt-4o-mini"
40
+
41
+ # Run with Grok 4 Fast (FREE!)
42
+ npx agentic-flow@beta --agent coder --task "Write Python hello world" \
43
+ --provider openrouter --model "x-ai/grok-4-fast"
44
+ ```
45
+
46
+ ---
47
+
48
+ ## ✅ Verified Working
49
+
50
+ ### NPX Command
51
+ ```bash
52
+ $ npx agentic-flow@beta --version
53
+ agentic-flow v1.1.14-beta.1
54
+
55
+ $ npx agentic-flow@beta --help
56
+ 🤖 Agentic Flow v1.1.14-beta.1 - AI Agent Orchestration with OpenRouter Support
57
+ [Full help output shown]
58
+
59
+ $ npx agentic-flow@beta --agent coder --task "hello world" --provider anthropic
60
+ ✅ Completed! [Working perfectly]
61
+ ```
62
+
63
+ ### OpenRouter Models (8/10 = 80%)
64
+
65
+ | Model | Status | Time | Cost/M Tokens | Use Case |
66
+ |-------|--------|------|---------------|----------|
67
+ | **openai/gpt-4o-mini** | ✅ | 7s | $0.15 | Best value |
68
+ | **openai/gpt-3.5-turbo** | ✅ | 5s | $0.50 | Fastest |
69
+ | **meta-llama/llama-3.1-8b-instruct** | ✅ | 14s | $0.06 | Open source |
70
+ | **anthropic/claude-3.5-sonnet** | ✅ | 11s | $3.00 | Highest quality |
71
+ | **mistralai/mistral-7b-instruct** | ✅ | 6s | $0.25 | Fast & efficient |
72
+ | **google/gemini-2.0-flash-exp** | ✅ | 6s | Free | Free tier |
73
+ | **x-ai/grok-4-fast** | ✅ | 8s | Free | #1 most popular! |
74
+ | **z-ai/glm-4.6** | ✅ | 5s | Varies | Fixed in this release |
75
+
76
+ ### Known Issues (2/10)
77
+ | Model | Issue | Workaround |
78
+ |-------|-------|------------|
79
+ | **meta-llama/llama-3.3-70b-instruct** | Intermittent timeout | Use llama-3.1-8b instead |
80
+ | **x-ai/grok-4** | Too slow (60s+) | Use grok-4-fast instead |
81
+
82
+ ---
83
+
84
+ ## 💰 Cost Savings
85
+
86
+ ### Comparison vs Claude Direct API
87
+
88
+ | Model | Cost | vs Claude ($3/M) | Savings |
89
+ |-------|------|------------------|---------|
90
+ | GPT-4o-mini | $0.15/M | $2.85 | **95%** |
91
+ | Llama 3.1 8B | $0.06/M | $2.94 | **98%** |
92
+ | Mistral 7B | $0.25/M | $2.75 | **92%** |
93
+ | GPT-3.5-turbo | $0.50/M | $2.50 | **83%** |
94
+ | Grok 4 Fast | Free | $3.00 | **100%** |
95
+ | Gemini 2.0 Flash | Free | $3.00 | **100%** |
96
+
97
+ **Average savings: ~94% across all working models**
98
+
99
+ ---
100
+
101
+ ## 🔧 What Was Fixed
102
+
103
+ ### Critical Bug
104
+ **TypeError: anthropicReq.system?.substring is not a function**
105
+
106
+ **Root Cause:**
107
+ - Anthropic API allows `system` field to be string OR array of content blocks
108
+ - Claude Agent SDK sends it as array (for prompt caching)
109
+ - Proxy assumed string only → called `.substring()` on array → crash
110
+ - Result: 100% failure rate
111
+
112
+ **Solution:**
113
+ ```typescript
114
+ // Before (BROKEN)
115
+ interface AnthropicRequest {
116
+ system?: string;
117
+ }
118
+
119
+ // After (FIXED)
120
+ interface AnthropicRequest {
121
+ system?: string | Array<{ type: string; text?: string; [key: string]: any }>;
122
+ }
123
+
124
+ // Safe extraction logic
125
+ if (typeof anthropicReq.system === 'string') {
126
+ originalSystem = anthropicReq.system;
127
+ } else if (Array.isArray(anthropicReq.system)) {
128
+ originalSystem = anthropicReq.system
129
+ .filter(block => block.type === 'text' && block.text)
130
+ .map(block => block.text)
131
+ .join('\n');
132
+ }
133
+ ```
134
+
135
+ ---
136
+
137
+ ## 📊 Testing Results
138
+
139
+ ### Regression Tests
140
+ - ✅ Anthropic Direct: No regressions
141
+ - ✅ Google Gemini: No regressions
142
+ - ✅ OpenRouter: Fixed from 0% → 80%
143
+
144
+ ### MCP Tools
145
+ - ✅ All 15 tools working through OpenRouter proxy
146
+ - ✅ File operations validated (Write, Read, Bash)
147
+ - ✅ Tool format conversion working (Anthropic ↔ OpenAI)
148
+
149
+ ### Performance
150
+ - GPT-3.5-turbo: 5s (fastest)
151
+ - Mistral 7B: 6s
152
+ - Gemini 2.0 Flash: 6s
153
+ - GPT-4o-mini: 7s
154
+ - Grok 4 Fast: 8s
155
+ - Claude 3.5 Sonnet: 11s
156
+ - Llama 3.1 8B: 14s
157
+
158
+ ---
159
+
160
+ ## 📖 Documentation
161
+
162
+ ### Technical Details
163
+ - [OPENROUTER-FIX-VALIDATION.md](docs/archived/OPENROUTER-FIX-VALIDATION.md) - Technical validation
164
+ - [OPENROUTER-SUCCESS-REPORT.md](docs/archived/OPENROUTER-SUCCESS-REPORT.md) - Comprehensive report
165
+ - [FINAL-TESTING-SUMMARY.md](FINAL-TESTING-SUMMARY.md) - Complete testing summary
166
+ - [REGRESSION-TEST-RESULTS.md](REGRESSION-TEST-RESULTS.md) - Regression validation
167
+ - [V1.1.14-BETA-READY.md](V1.1.14-BETA-READY.md) - Beta readiness assessment
168
+
169
+ ### Quick Reference
170
+ - **66+ specialized agents** available
171
+ - **111 MCP tools** for coordination
172
+ - **4 providers:** Anthropic, OpenRouter, Gemini, ONNX
173
+ - **400+ models** via OpenRouter
174
+ - **Zero breaking changes** - fully backward compatible
175
+
176
+ ---
177
+
178
+ ## 🚀 Example Usage
179
+
180
+ ### Basic Code Generation
181
+ ```bash
182
+ # With Anthropic (highest quality)
183
+ npx agentic-flow@beta --agent coder --task "Create REST API with Express"
184
+
185
+ # With OpenRouter GPT-4o-mini (best value)
186
+ npx agentic-flow@beta --agent coder --task "Create REST API with Express" \
187
+ --provider openrouter --model "openai/gpt-4o-mini"
188
+
189
+ # With Grok 4 Fast (free!)
190
+ npx agentic-flow@beta --agent coder --task "Create REST API with Express" \
191
+ --provider openrouter --model "x-ai/grok-4-fast"
192
+ ```
193
+
194
+ ### Multi-Agent Workflows
195
+ ```bash
196
+ # Research task with cheaper model
197
+ npx agentic-flow@beta --agent researcher \
198
+ --task "Research best practices for microservices" \
199
+ --provider openrouter --model "openai/gpt-3.5-turbo"
200
+
201
+ # Code review with high-quality model
202
+ npx agentic-flow@beta --agent reviewer \
203
+ --task "Review my authentication code" \
204
+ --provider openrouter --model "anthropic/claude-3.5-sonnet"
205
+
206
+ # Testing with fast model
207
+ npx agentic-flow@beta --agent tester \
208
+ --task "Create Jest tests for my API" \
209
+ --provider openrouter --model "mistralai/mistral-7b-instruct"
210
+ ```
211
+
212
+ ### Configuration
213
+ ```bash
214
+ # Interactive wizard
215
+ npx agentic-flow@beta config
216
+
217
+ # Set OpenRouter API key
218
+ npx agentic-flow@beta config set OPENROUTER_API_KEY "sk-or-..."
219
+
220
+ # List configuration
221
+ npx agentic-flow@beta config list
222
+ ```
223
+
224
+ ---
225
+
226
+ ## 🐛 Reporting Issues
227
+
228
+ This is a **beta release** - please test and report any issues:
229
+
230
+ **GitHub Issues:** https://github.com/ruvnet/agentic-flow/issues
231
+
232
+ When reporting, please include:
233
+ - Model being used
234
+ - Task description
235
+ - Error message (if any)
236
+ - Output received
237
+ - Expected behavior
238
+
239
+ ---
240
+
241
+ ## 🔄 Upgrade Path
242
+
243
+ ### From v1.1.13 → v1.1.14-beta.1
244
+
245
+ **Changes:**
246
+ - OpenRouter proxy now functional (was 100% broken)
247
+ - No breaking changes to API
248
+ - All existing code continues to work
249
+ - New: 8 OpenRouter models now available
250
+
251
+ **Migration:**
252
+ ```bash
253
+ # Update to beta
254
+ npm install agentic-flow@beta
255
+
256
+ # Or use npx (always gets latest)
257
+ npx agentic-flow@beta [commands]
258
+ ```
259
+
260
+ **Rollback if needed:**
261
+ ```bash
262
+ npm install agentic-flow@1.1.13
263
+ ```
264
+
265
+ ---
266
+
267
+ ## 🎯 Next Steps
268
+
269
+ ### Before Stable Release (v1.1.14)
270
+ 1. ⏳ User beta testing feedback
271
+ 2. ⏳ Test DeepSeek models with proper API keys
272
+ 3. ⏳ Debug Llama 3.3 70B timeout issue
273
+ 4. ⏳ Test streaming responses
274
+ 5. ⏳ Performance benchmarking
275
+ 6. ⏳ Additional model validation
276
+
277
+ ### Future Enhancements (v1.2.0)
278
+ 1. Auto-detect best model for task
279
+ 2. Automatic failover between models
280
+ 3. Model capability detection
281
+ 4. Streaming response support
282
+ 5. Cost optimization features
283
+ 6. Performance metrics dashboard
284
+
285
+ ---
286
+
287
+ ## 📈 Success Metrics
288
+
289
+ ### Before v1.1.14-beta.1
290
+ - OpenRouter success rate: **0%** (100% failure)
291
+ - Working models: 0
292
+ - Cost savings: Not available
293
+ - User complaints: High
294
+
295
+ ### After v1.1.14-beta.1
296
+ - OpenRouter success rate: **80%** (8/10 working)
297
+ - Working models: 8
298
+ - Cost savings: Up to **99%**
299
+ - MCP tools: All 15 working
300
+ - Most popular model: ✅ Working (Grok 4 Fast)
301
+
302
+ ---
303
+
304
+ ## ✅ Release Checklist
305
+
306
+ - [x] Core bug fixed (anthropicReq.system)
307
+ - [x] 10 models tested (8 working)
308
+ - [x] Popular models validated (Grok 4 Fast)
309
+ - [x] MCP tools working (all 15)
310
+ - [x] File operations confirmed
311
+ - [x] No regressions in baseline providers
312
+ - [x] Documentation complete
313
+ - [x] Changelog updated
314
+ - [x] Package version updated
315
+ - [x] TypeScript build successful
316
+ - [x] Git tag created
317
+ - [x] NPM published with beta tag
318
+ - [x] GitHub release created
319
+ - [x] npx command verified
320
+ - [x] User communication prepared
321
+
322
+ ---
323
+
324
+ ## 🙏 Credits
325
+
326
+ **Debugging time:** ~4 hours
327
+ **Lines changed:** ~50
328
+ **Models tested:** 10
329
+ **Success rate:** 80%
330
+ **Impact:** Unlocked 400+ models via OpenRouter
331
+
332
+ **Built with:** [Claude Code](https://claude.com/claude-code)
333
+
334
+ ---
335
+
336
+ **Ready for production after beta testing!** 🚀
@@ -0,0 +1,339 @@
1
+ # Release Notes - agentic-flow v1.2.0
2
+
3
+ **Release Date:** 2025-10-06
4
+ **Version:** 1.2.0
5
+ **Major Feature:** MCP CLI for User-Friendly Server Configuration
6
+
7
+ ---
8
+
9
+ ## 🚀 What's New
10
+
11
+ ### MCP CLI Manager - Add Custom Servers Without Code Editing!
12
+
13
+ **The Problem:** Previously, adding custom MCP servers required editing TypeScript code and rebuilding the project.
14
+
15
+ **The Solution:** New CLI commands let end users add custom MCP servers without any code editing, similar to Claude Desktop's approach.
16
+
17
+ ### New Commands
18
+
19
+ ```bash
20
+ # Add MCP server (Claude Desktop style JSON config)
21
+ npx agentic-flow mcp add weather '{"command":"npx","args":["-y","weather-mcp"],"env":{"API_KEY":"xxx"}}'
22
+
23
+ # Add MCP server (simple flag-based config)
24
+ npx agentic-flow mcp add github --npm @modelcontextprotocol/server-github --env "GITHUB_TOKEN=ghp_xxx"
25
+
26
+ # Add local MCP server
27
+ npx agentic-flow mcp add my-tools --local /path/to/server.js
28
+
29
+ # List configured servers
30
+ npx agentic-flow mcp list
31
+
32
+ # Enable/disable servers
33
+ npx agentic-flow mcp enable weather
34
+ npx agentic-flow mcp disable weather
35
+
36
+ # Remove server
37
+ npx agentic-flow mcp remove weather
38
+
39
+ # Update configuration
40
+ npx agentic-flow mcp update weather --env "API_KEY=new-key"
41
+ ```
42
+
43
+ ### Key Benefits
44
+
45
+ - ✅ **No Code Editing** - Add servers via CLI commands
46
+ - ✅ **No TypeScript Required** - Suitable for non-developers
47
+ - ✅ **No Rebuilding** - Changes take effect immediately
48
+ - ✅ **Claude Desktop Compatible** - Same JSON config format
49
+ - ✅ **Automatic Loading** - Servers load automatically in all agents
50
+ - ✅ **Persistent Storage** - Configuration stored in `~/.agentic-flow/mcp-config.json`
51
+ - ✅ **100% Backward Compatible** - No breaking changes
52
+
53
+ ---
54
+
55
+ ## 📚 Documentation
56
+
57
+ ### User Guides
58
+ - **[ADDING-MCP-SERVERS-CLI.md](./guides/ADDING-MCP-SERVERS-CLI.md)** (516 lines)
59
+ - Complete end-user guide for CLI commands
60
+ - Step-by-step examples
61
+ - Popular MCP servers list
62
+ - Troubleshooting section
63
+
64
+ - **[ADDING-MCP-SERVERS.md](./guides/ADDING-MCP-SERVERS.md)** (570 lines)
65
+ - Developer integration guide
66
+ - Code examples for in-SDK and external servers
67
+ - Best practices
68
+
69
+ ### Validation Reports
70
+ - **[MCP-CLI-VALIDATION-REPORT.md](./mcp-validation/MCP-CLI-VALIDATION-REPORT.md)**
71
+ - Complete validation results
72
+ - Live agent test with strange-loops MCP
73
+ - 100% test pass rate (8/8 tests)
74
+
75
+ - **[IMPLEMENTATION-SUMMARY.md](./mcp-validation/IMPLEMENTATION-SUMMARY.md)**
76
+ - Technical implementation details
77
+ - Before/after comparison
78
+ - Security considerations
79
+
80
+ - **[strange-loops-test.md](./mcp-validation/strange-loops-test.md)**
81
+ - Live agent test output
82
+ - Proof of integration working
83
+
84
+ ---
85
+
86
+ ## 🔧 Technical Details
87
+
88
+ ### New Files
89
+
90
+ **Implementation:**
91
+ - `src/cli/mcp-manager.ts` (617 lines)
92
+ - Complete CLI tool with 8 commands
93
+ - JSON and flag-based config support
94
+ - Configuration management
95
+
96
+ **Documentation:**
97
+ - `docs/guides/ADDING-MCP-SERVERS-CLI.md`
98
+ - `docs/guides/ADDING-MCP-SERVERS.md`
99
+ - `docs/mcp-validation/MCP-CLI-VALIDATION-REPORT.md`
100
+ - `docs/mcp-validation/IMPLEMENTATION-SUMMARY.md`
101
+ - `docs/mcp-validation/strange-loops-test.md`
102
+ - `docs/NPM-PUBLISH-GUIDE-v1.2.0.md`
103
+
104
+ ### Modified Files
105
+
106
+ **Agent Integration:**
107
+ - `src/agents/claudeAgent.ts` (lines 171-203)
108
+ - Auto-load user-configured MCP servers
109
+ - Read from `~/.agentic-flow/mcp-config.json`
110
+ - Merge with built-in servers
111
+
112
+ **Documentation:**
113
+ - Root `README.md` - Added "Add Custom MCP Servers" section
114
+ - NPM `README.md` - Added "Add Custom MCP Servers" section
115
+
116
+ ### Configuration Format
117
+
118
+ ```json
119
+ {
120
+ "servers": {
121
+ "server-name": {
122
+ "enabled": true,
123
+ "type": "npm" | "local",
124
+ "package": "npm-package@version",
125
+ "command": "npx" | "node" | "python3" | "docker",
126
+ "args": ["arg1", "arg2"],
127
+ "env": {
128
+ "API_KEY": "value"
129
+ },
130
+ "description": "Server description"
131
+ }
132
+ }
133
+ }
134
+ ```
135
+
136
+ ---
137
+
138
+ ## ✅ Validation Results
139
+
140
+ ### Live Agent Test
141
+
142
+ **Test:** Added strange-loops MCP server and ran agent
143
+
144
+ **Command:**
145
+ ```bash
146
+ npx agentic-flow mcp add strange-loops '{"command":"npx","args":["-y","strange-loops","mcp","start"]}'
147
+ npx agentic-flow --agent researcher --task "List all MCP tools"
148
+ ```
149
+
150
+ **Result:** ✅ SUCCESS
151
+ - Agent loaded strange-loops MCP server
152
+ - Detected all 9 tools from the server
153
+ - Tools immediately available to agent
154
+
155
+ **Console Output:**
156
+ ```
157
+ [agentic-flow] Loaded MCP server: strange-loops
158
+ ```
159
+
160
+ **Tools Detected:**
161
+ 1. `mcp__strange-loops__system_info`
162
+ 2. `mcp__strange-loops__benchmark_run`
163
+ 3. `mcp__strange-loops__nano_swarm_create`
164
+ 4. `mcp__strange-loops__nano_swarm_run`
165
+ 5. `mcp__strange-loops__quantum_container_create`
166
+ 6. `mcp__strange-loops__quantum_superposition`
167
+ 7. `mcp__strange-loops__quantum_measure`
168
+ 8. `mcp__strange-loops__temporal_predictor_create`
169
+ 9. `mcp__strange-loops__temporal_predict`
170
+
171
+ ### Test Results Summary
172
+
173
+ | Test | Status | Evidence |
174
+ |------|--------|----------|
175
+ | TypeScript Build | ✅ PASS | Compilation successful |
176
+ | CLI Commands | ✅ PASS | All commands working |
177
+ | JSON Config | ✅ PASS | Claude Desktop format supported |
178
+ | Flag Config | ✅ PASS | Flag-based format supported |
179
+ | Config Persistence | ✅ PASS | Stored in ~/.agentic-flow/ |
180
+ | Agent Integration | ✅ PASS | Auto-load working |
181
+ | Tool Discovery | ✅ PASS | All tools detected |
182
+ | Backward Compatibility | ✅ PASS | No breaking changes |
183
+
184
+ **Overall:** ✅ **100% PASS RATE (8/8 tests)**
185
+
186
+ ---
187
+
188
+ ## 🎯 Use Cases
189
+
190
+ ### Add GitHub MCP Server
191
+ ```bash
192
+ # Add official GitHub MCP
193
+ npx agentic-flow mcp add github \
194
+ --npm @modelcontextprotocol/server-github \
195
+ --env "GITHUB_TOKEN=ghp_your_token"
196
+
197
+ # Use it with agent
198
+ npx agentic-flow --agent coder --task "Create issue on repo owner/repo"
199
+ ```
200
+
201
+ ### Add Weather MCP Server
202
+ ```bash
203
+ # Add weather MCP
204
+ npx agentic-flow mcp add weather \
205
+ --npm weather-mcp \
206
+ --env "WEATHER_API_KEY=your_key"
207
+
208
+ # Use it
209
+ npx agentic-flow --agent researcher --task "Get weather forecast for San Francisco"
210
+ ```
211
+
212
+ ### Add Local Development Server
213
+ ```bash
214
+ # Add local MCP server
215
+ npx agentic-flow mcp add dev-tools \
216
+ --local /home/user/projects/my-mcp/server.js
217
+
218
+ # Use it
219
+ npx agentic-flow --agent coder --task "Use my custom tools"
220
+ ```
221
+
222
+ ---
223
+
224
+ ## 🚫 Breaking Changes
225
+
226
+ **None.** This is a purely additive feature.
227
+
228
+ - Existing environment variable approach still works
229
+ - Existing code-based MCP registration still works
230
+ - User-configured servers load alongside built-in servers
231
+ - No changes to existing APIs
232
+
233
+ ---
234
+
235
+ ## 🔮 Future Enhancements (v1.2.1+)
236
+
237
+ ### Planned Commands (Not in v1.2.0)
238
+
239
+ **1. Test Command**
240
+ ```bash
241
+ npx agentic-flow mcp test weather
242
+ # Will test if server starts and responds correctly
243
+ ```
244
+
245
+ **2. Info Command**
246
+ ```bash
247
+ npx agentic-flow mcp info weather
248
+ # Will show detailed server information
249
+ ```
250
+
251
+ **3. Tools Command**
252
+ ```bash
253
+ npx agentic-flow mcp tools weather
254
+ # Will list all tools from specific server
255
+ ```
256
+
257
+ **4. Export/Import**
258
+ ```bash
259
+ npx agentic-flow mcp export > config.json
260
+ npx agentic-flow mcp import < config.json
261
+ # Share configurations with team
262
+ ```
263
+
264
+ ### Other Future Features
265
+ - Shell completion (bash/zsh)
266
+ - API key encryption in config
267
+ - Server signature verification
268
+ - Automatic server updates
269
+ - Usage statistics
270
+
271
+ ---
272
+
273
+ ## 📦 Installation
274
+
275
+ ### Global Install
276
+ ```bash
277
+ npm install -g agentic-flow@1.2.0
278
+ ```
279
+
280
+ ### Use with npx (No Install)
281
+ ```bash
282
+ npx agentic-flow@1.2.0 mcp add my-server --npm my-mcp-package
283
+ ```
284
+
285
+ ### Upgrade from Previous Version
286
+ ```bash
287
+ npm update -g agentic-flow
288
+ ```
289
+
290
+ ---
291
+
292
+ ## 🔗 Links
293
+
294
+ **GitHub:**
295
+ - Pull Request: https://github.com/ruvnet/agentic-flow/pull/4
296
+ - Repository: https://github.com/ruvnet/agentic-flow
297
+ - Issues: https://github.com/ruvnet/agentic-flow/issues
298
+
299
+ **NPM:**
300
+ - Package: https://www.npmjs.com/package/agentic-flow
301
+ - Version: https://www.npmjs.com/package/agentic-flow/v/1.2.0
302
+
303
+ **Documentation:**
304
+ - User Guide: https://github.com/ruvnet/agentic-flow/blob/main/agentic-flow/docs/guides/ADDING-MCP-SERVERS-CLI.md
305
+ - Developer Guide: https://github.com/ruvnet/agentic-flow/blob/main/agentic-flow/docs/guides/ADDING-MCP-SERVERS.md
306
+
307
+ ---
308
+
309
+ ## 👏 Credits
310
+
311
+ **Built by:** [@ruvnet](https://github.com/ruvnet)
312
+ **Implemented with:** [Claude Code](https://claude.com/claude-code)
313
+ **Based on:** [Claude Agent SDK](https://docs.claude.com/en/api/agent-sdk) by Anthropic
314
+
315
+ ---
316
+
317
+ ## 📋 Quick Reference
318
+
319
+ | Task | Command |
320
+ |------|---------|
321
+ | Add NPM server | `npx agentic-flow mcp add NAME --npm PACKAGE` |
322
+ | Add local server | `npx agentic-flow mcp add NAME --local PATH` |
323
+ | Add with JSON | `npx agentic-flow mcp add NAME '{"command":...}'` |
324
+ | List servers | `npx agentic-flow mcp list` |
325
+ | Enable server | `npx agentic-flow mcp enable NAME` |
326
+ | Disable server | `npx agentic-flow mcp disable NAME` |
327
+ | Remove server | `npx agentic-flow mcp remove NAME` |
328
+
329
+ **Config File:** `~/.agentic-flow/mcp-config.json`
330
+
331
+ ---
332
+
333
+ **Release Status:** ✅ READY FOR PRODUCTION
334
+
335
+ **Validation:** ✅ 100% TEST PASS RATE
336
+
337
+ **Documentation:** ✅ COMPLETE
338
+
339
+ **Ready to Publish:** ✅ YES