atabey-mcp 0.0.15 → 0.0.16

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 (27) hide show
  1. package/README.md +18 -32
  2. package/dist/dashboard/assets/index-B-Eu7_J9.js +1260 -0
  3. package/dist/dashboard/index.html +1 -1
  4. package/dist/framework-mcp/src/index.js +69 -10
  5. package/dist/framework-mcp/src/tools/control_plane/registry.js +52 -4
  6. package/dist/framework-mcp/src/tools/definitions.js +1 -1
  7. package/dist/framework-mcp/src/tools/file_system/read_file.js +5 -0
  8. package/dist/framework-mcp/src/tools/messaging/approve_operation.js +1 -1
  9. package/dist/framework-mcp/src/tools/messaging/send_message.js +19 -3
  10. package/dist/framework-mcp/src/tools/search/grep_search.js +11 -4
  11. package/dist/framework-mcp/src/tools/search/list_dir.js +3 -0
  12. package/dist/framework-mcp/src/tools/shell/run_command.js +47 -1
  13. package/dist/framework-mcp/src/utils/auth.js +71 -4
  14. package/dist/framework-mcp/src/utils/compliance.js +45 -13
  15. package/dist/framework-mcp/src/utils/discipline.js +41 -2
  16. package/dist/framework-mcp/src/utils/human-in-loop.js +113 -9
  17. package/dist/framework-mcp/src/utils/permissions.js +179 -43
  18. package/dist/framework-mcp/src/utils/prompt-injection.js +63 -0
  19. package/dist/src/cli/utils/memory.js +6 -5
  20. package/dist/src/modules/engines/evaluation-engine.js +17 -16
  21. package/dist/src/modules/engines/quality-gate.js +4 -2
  22. package/dist/src/modules/engines/risk-engine.js +98 -3
  23. package/dist/src/modules/engines/routing-engine.js +97 -1
  24. package/dist/src/modules/providers/shared.js +2 -3
  25. package/dist/src/shared/storage.js +76 -2
  26. package/package.json +21 -18
  27. package/dist/dashboard/assets/index-B_rK57vi.js +0 -1221
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Agent Atabey — MCP Server (`atabey-mcp`)
2
2
 
3
3
  [![Version](https://img.shields.io/npm/v/atabey-mcp.svg)](https://www.npmjs.com/package/atabey-mcp)
4
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
+ [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
5
5
  [![npm](https://img.shields.io/npm/dt/atabey-mcp)](https://www.npmjs.com/package/atabey-mcp)
6
6
 
7
7
  The **Model Context Protocol (MCP)** server for [Agent Atabey](https://www.npmjs.com/package/atabey).
@@ -126,7 +126,6 @@ framework-mcp/dashboard/src/
126
126
  │ ├── CompliancePanel.tsx # Compliance control panel
127
127
  │ ├── ErrorTracker.tsx # Error tracking
128
128
  │ ├── FinOpsPanel.tsx # Team & Agent budget management (New)
129
- │ ├── GatewayPanel.tsx # LLM Gateway management
130
129
  │ ├── HermesBrokerView.tsx # Hermes message queue
131
130
  │ ├── HermesStats.tsx # Hermes statistics
132
131
  │ ├── LicensePanel.tsx # SPDX license compliance tracker (New)
@@ -220,34 +219,6 @@ framework-mcp/dashboard/src/
220
219
 
221
220
  ---
222
221
 
223
- ## LLM Gateway Tools
224
-
225
- ### `llm_gateway_query`
226
-
227
- Sends queries to LLM providers with load balancing, circuit breaker, and rate limiting.
228
-
229
- **Parameters:**
230
- - `provider` (string): LLM provider name (`openai`, `anthropic`, `google`, `groq`, `ollama`)
231
- - `model` (string): Model name
232
- - `messages` (array): Chat messages
233
- - `options` (object, optional): Temperature, max tokens, etc.
234
-
235
- ### `llm_gateway_status`
236
-
237
- Returns gateway status and provider statistics.
238
-
239
- **Supported Providers:**
240
-
241
- | Provider | Models | Status |
242
- |----------|--------|--------|
243
- | OpenAI | GPT-4, GPT-4o, o3, o4-mini | ✅ |
244
- | Anthropic | Claude Opus 4.5, Sonnet 4.5, Haiku 3.5 | ✅ |
245
- | Google | Gemini 2.5 Pro, Flash, Flash-Lite | ✅ |
246
- | Groq | Llama, Mixtral | ✅ |
247
- | Ollama | Local models | ✅ |
248
-
249
- ---
250
-
251
222
  ## MCP Configuration
252
223
 
253
224
  ### Claude Code
@@ -577,7 +548,6 @@ framework-mcp/
577
548
  │ │ ├── control_plane/ # Lock, Registry
578
549
  │ │ ├── file_system/ # Read, Write, Edit, Patch
579
550
  │ │ ├── framework/ # Status, Test, Orchestrate
580
- │ │ ├── gateway/ # LLM Gateway
581
551
  │ │ ├── memory/ # Knowledge management
582
552
  │ │ ├── messaging/ # Hermes messaging
583
553
  │ │ ├── observability/ # Health, Port
@@ -617,7 +587,6 @@ npx vitest run tests/tools/file_system/file_system_tools.test.ts
617
587
  | `utils/auto-rollback.test.ts` | Pre-write snapshot, violation detection, auto-rollback | ✅ 12 passed |
618
588
  | `utils/loop-detector.test.ts` | 6 loop patterns, file churn, oscillation detection | ✅ 14 passed |
619
589
 
620
- > **Note:** Gateway module tests are in the main package: `tests/modules/gateway/`
621
590
 
622
591
  ---
623
592
 
@@ -631,4 +600,21 @@ npx vitest run tests/tools/file_system/file_system_tools.test.ts
631
600
 
632
601
  ---
633
602
 
603
+ ## License & Business Model
604
+
605
+ **Code:** GNU Affero General Public License v3.0 — [Yusuf BEKAR](mailto:ybekar@msn.com)
606
+
607
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
608
+
609
+ **Network Use Clause (Section 13):** If you modify the Program and make it accessible over a network (e.g., as a SaaS service), you must provide the complete corresponding source code to all users who interact with it remotely.
610
+
611
+ **Service Model (Support / SLA / Consulting):** The code is **100% free and open source**. Revenue comes from:
612
+ - **Enterprise Support & SLA** — Guaranteed response times, priority bug fixes, custom integrations
613
+ - **Consulting & Training** — Team onboarding, governance policy design, architecture review
614
+ - **Managed Enterprise Server** — Centralized telemetry, multi-team budget management, org-wide dashboard
615
+
616
+ Enterprise inquiries: **ybekar@msn.com**
617
+
618
+ ---
619
+
634
620
  *Developer: **Yusuf BEKAR** — "Order from Chaos"*