marm-mcp-server 2.1__tar.gz

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 (42) hide show
  1. marm_mcp_server-2.1/MCP-README.md +439 -0
  2. marm_mcp_server-2.1/PKG-INFO +485 -0
  3. marm_mcp_server-2.1/config/__init__.py +1 -0
  4. marm_mcp_server-2.1/config/settings.py +79 -0
  5. marm_mcp_server-2.1/core/__init__.py +1 -0
  6. marm_mcp_server-2.1/core/events.py +87 -0
  7. marm_mcp_server-2.1/core/memory.py +407 -0
  8. marm_mcp_server-2.1/core/models.py +39 -0
  9. marm_mcp_server-2.1/core/rate_limiter.py +130 -0
  10. marm_mcp_server-2.1/core/response_limiter.py +186 -0
  11. marm_mcp_server-2.1/endpoints/__init__.py +1 -0
  12. marm_mcp_server-2.1/endpoints/logging.py +185 -0
  13. marm_mcp_server-2.1/endpoints/memory.py +197 -0
  14. marm_mcp_server-2.1/endpoints/notebook.py +176 -0
  15. marm_mcp_server-2.1/endpoints/reasoning.py +271 -0
  16. marm_mcp_server-2.1/endpoints/session.py +83 -0
  17. marm_mcp_server-2.1/endpoints/system.py +147 -0
  18. marm_mcp_server-2.1/marm_mcp_server.egg-info/PKG-INFO +485 -0
  19. marm_mcp_server-2.1/marm_mcp_server.egg-info/SOURCES.txt +40 -0
  20. marm_mcp_server-2.1/marm_mcp_server.egg-info/dependency_links.txt +1 -0
  21. marm_mcp_server-2.1/marm_mcp_server.egg-info/entry_points.txt +5 -0
  22. marm_mcp_server-2.1/marm_mcp_server.egg-info/requires.txt +21 -0
  23. marm_mcp_server-2.1/marm_mcp_server.egg-info/top_level.txt +8 -0
  24. marm_mcp_server-2.1/middleware/__init__.py +1 -0
  25. marm_mcp_server-2.1/middleware/rate_limiting.py +70 -0
  26. marm_mcp_server-2.1/pyproject.toml +93 -0
  27. marm_mcp_server-2.1/services/__init__.py +1 -0
  28. marm_mcp_server-2.1/services/automation.py +23 -0
  29. marm_mcp_server-2.1/services/documentation.py +251 -0
  30. marm_mcp_server-2.1/setup.cfg +4 -0
  31. marm_mcp_server-2.1/tests/test_docker_integration.py +380 -0
  32. marm_mcp_server-2.1/tests/test_docker_mcp_size_limits.py +229 -0
  33. marm_mcp_server-2.1/tests/test_docker_memory_usage.py +200 -0
  34. marm_mcp_server-2.1/tests/test_docker_performance.py +257 -0
  35. marm_mcp_server-2.1/tests/test_docker_security.py +325 -0
  36. marm_mcp_server-2.1/tests/test_integration.py +181 -0
  37. marm_mcp_server-2.1/tests/test_mcp_size_limits.py +276 -0
  38. marm_mcp_server-2.1/tests/test_memory_usage.py +68 -0
  39. marm_mcp_server-2.1/tests/test_performance.py +155 -0
  40. marm_mcp_server-2.1/tests/test_security.py +47 -0
  41. marm_mcp_server-2.1/utils/__init__.py +1 -0
  42. marm_mcp_server-2.1/utils/helpers.py +80 -0
@@ -0,0 +1,439 @@
1
+ <div align="center">
2
+ <picture>
3
+ <img src="https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/media/marm-main.jpg"
4
+ alt="MARM - The AI That Remembers Your Conversations"
5
+ width="700"
6
+ height="350"
7
+ </picture>
8
+ <h1 align="center">MARM: The AI That Remembers Your Conversations</h1>
9
+
10
+ Memory Accurate Response Mode v2.1 - The intelligent memory system for AI agents. Stop losing context. Stop hallucinations. Start controlling your LLM conversations.
11
+
12
+ ![Stars](https://img.shields.io/github/stars/Lyellr88/MARM-Protocol?style=flat-square) ![Forks](https://img.shields.io/github/forks/Lyellr88/MARM-Protocol?style=flat-square) [![Version](https://img.shields.io/badge/version-2.1.0-blue.svg)](https://github.com/MARM-Systems/MARM) [![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/LICENSE) ![Version](https://img.shields.io/badge/version-2.0-blue?style=flat-square)[![Python](https://img.shields.io/badge/python-3.8%2B-blue.svg)](https://python.org) [![FastAPI](https://img.shields.io/badge/FastAPI-0.115.8%2B-blue.svg)](https://fastapi.tiangolo.com) [![Docker Pulls](https://img.shields.io/docker/pulls/lyellr88/marm-mcp-server)](https://hub.docker.com/r/lyellr88/marm-mcp-server)
13
+
14
+ [![Official MARM](https://img.shields.io/badge/Official-MARM-blue?style=for-the-badge)](https://github.com/Lyellr88/MARM-Systems)
15
+
16
+ **Note:** This is the *official* MARM repository. All official versions and releases are managed here.
17
+
18
+ Forks may experiment, but official updates will always come from this repo.
19
+
20
+ </div>
21
+
22
+ ---
23
+
24
+ ## ⚡ **INSTANT SETUP** - Ready in 60 seconds
25
+
26
+ **Already have MARM running?** Connect instantly:
27
+
28
+ **Claude Code users:**
29
+
30
+ ```bash
31
+ /mcp # → Instant connection to your MARM server!
32
+ ```
33
+
34
+ **Claude Desktop users:**
35
+
36
+ ```json
37
+ // Add to your MCP settings:
38
+ {
39
+ "mcpServers": {
40
+ "marm-memory": {
41
+ "command": "docker",
42
+ "args": ["exec", "marm-mcp-server", "python", "/app/server.py"]
43
+ }
44
+ }
45
+ }
46
+ ```
47
+
48
+ **✅ 19 memory tools loaded ✅ Persistent sessions ✅ Semantic search**
49
+
50
+ **Don't have MARM yet?** Install + Connect:
51
+
52
+ ```bash
53
+ # 1. Pull & Start (30 seconds)
54
+ docker run -d --name marm-mcp-server -p 8001:8001 lyellr88/marm-mcp-server:latest
55
+
56
+ # 2. Connect to Claude (5 seconds)
57
+ /mcp add marm-memory http://localhost:8001/mcp
58
+
59
+ # 3. Activate (instant)
60
+ /mcp
61
+ ```
62
+
63
+ **🎯 You now have AI with perfect memory across all conversations!**
64
+
65
+ ---
66
+
67
+ ## 🚀 Full Installation Guide
68
+
69
+ **Docker (Fastest - 30 seconds):**
70
+
71
+ ```bash
72
+ docker pull lyellr88/marm-mcp-server:latest
73
+ docker run -d --name marm-mcp-server -p 8001:8001 lyellr88/marm-mcp-server:latest
74
+ claude mcp add marm-memory http://localhost:8001/mcp
75
+ ```
76
+
77
+ **Quick Local Install:**
78
+
79
+ ```bash
80
+ git clone https://github.com/Lyellr88/MARM-Systems.git
81
+ cd MARM-Systems/marm-mcp-server
82
+ # Cross-platform: pip install -r requirements.txt
83
+ claude mcp add marm-memory http://localhost:8001/mcp
84
+ ```
85
+
86
+ **Key Information:**
87
+
88
+ - **Server Endpoint**: `http://localhost:8001/mcp`
89
+ - **API Documentation**: `http://localhost:8001/docs`
90
+ - **Supported Clients**: Claude Code, Qwen CLI, Gemini CLI, and any MCP-compatible LLM client or LLM platform
91
+
92
+ **All Installation Options:**
93
+
94
+ - **Docker** (Fastest): One command, works everywhere
95
+ - **Automated Setup**: One command with dependency validation
96
+ - **Manual Installation**: Step-by-step with virtual environment
97
+ - **Quick Test**: Zero-configuration trial run
98
+
99
+ **Choose your installation method:**
100
+
101
+ | Installation Type | Guide | Best For |
102
+ |-------------------|-------|----------|
103
+ | **Docker** | **[INSTALL-DOCKER.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-DOCKER.md)** | Cross-platform, production deployment |
104
+ | **Windows** | **[INSTALL-WINDOWS.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-WINDOWS.md)** | Native Windows development |
105
+ | **Linux** | **[INSTALL-LINUX.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-LINUX.md)** | Native Linux development |
106
+ | **Platforms** | **[INSTALL-PLATFORM.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-PLATFORM.md)** | App & API integration |
107
+
108
+ ---
109
+
110
+ ## 🎯 Why MARM?
111
+
112
+ MARM (Memory Accurate Response Mode) is a comprehensive AI memory ecosystem I designed to solve the problem of context loss in large language models. What started as a simple protocol has evolved into a suite of tools that provide a persistent, intelligent, and cross-platform memory for any AI agent.
113
+
114
+ The MARM ecosystem consists of three main components:
115
+
116
+ - **The MARM Protocol:** A set of rules and commands for structured, reliable AI interaction.
117
+ - **The MARM Universal MCP Server:** A production-ready memory intelligence platform that provides a powerful, stateful backend for any MCP-compatible AI client.
118
+ - **The MARM Chatbot:** A web-based interface for interacting with the MARM protocol directly.
119
+
120
+ Whether you're a developer looking to build the next generation of AI agents, a researcher studying AI behavior, or simply a power user who wants to have more productive conversations with your AI, the MARM ecosystem provides the tools you need to unlock the full potential of large language models.
121
+
122
+ <div align="center">
123
+ <picture>
124
+ <img src="https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/media/google-overview.PNG"
125
+ alt="MARM - The AI That Remembers Your Conversations"
126
+ width="700"
127
+ height="350"
128
+ </picture>
129
+ </div>
130
+ <p align="center">*Appears in Google AI Overview for AI memory protocol queries (as of Aug 2025)*
131
+
132
+ The newest addition to the ecosystem is MARM MCP it represents an emerging category of MCP server that integrates a complete protocol layer with intelligent memory systems. Built on FastAPI and SQLite, it combines the MARM protocol with semantic search, session management, and smart retrieval to bridge tool access with structured reasoning. This creates a more consistent, user-controlled LLM experience that goes beyond simple tool exposure.
133
+
134
+ | **Category** | **Feature** | **Description** |
135
+ |--------------|-------------|-----------------|
136
+ | **🧠 Memory** | **Semantic Search** | Find memories by meaning using AI embeddings, not keyword matching |
137
+ | | **Auto-Classification** | Content intelligently categorized (code, project, book, general) |
138
+ | | **Cross-Session Memory** | Memories survive across different AI agent conversations |
139
+ | | **Smart Recall** | Vector similarity search with context-aware intelligent fallbacks |
140
+ | **🤝 Multi-AI** | **Unified Memory Layer** | Accessible by any connected LLM (Claude, Qwen, Gemini, etc.) |
141
+ | | **Cross-Platform Intelligence** | Different AI agents learn from each other's interactions |
142
+ | | **User-Controlled Memory** | Granular control over memory sharing and "Bring Your Own History" |
143
+ | **🏗️ Architecture** | **19 Complete MCP Tools** | Full Model Context Protocol implementation |
144
+ | | **Database Optimization** | SQLite with WAL mode and connection pooling |
145
+ | | **Rate Limiting** | IP-based protection for sustainable free service |
146
+ | | **MCP Compliance** | Response size management for optimal performance |
147
+ | | **Docker Ready** | Containerized deployment with health monitoring |
148
+ | **⚡ Advanced** | **Usage Analytics** | Privacy-conscious insights for platform optimization |
149
+ | | **Event-Driven System** | Self-managing architecture with comprehensive error isolation |
150
+ | | **Structured Logging** | Development and debugging support with `structlog` |
151
+ | | **Health Monitoring** | Real-time system status and performance tracking |
152
+
153
+ ---
154
+
155
+ ## Why I Built MARM
156
+
157
+ MARM started with my own frustrations: AI losing context, repeating itself, and drifting off track. But I didn’t stop there. I asked a simple question in a few AI subreddits:
158
+ *“What’s the one thing you wish your LLM could do better?”*
159
+
160
+ The replies echoed the same pain points:
161
+
162
+ - Keep memory accurate
163
+ - Give users more control
164
+ - Be transparent, not a black box
165
+
166
+ That feedback confirmed the gap I already saw. I took those shared frustrations, found the middle ground, and built MARM. Early contributors validated the idea and shaped features, but the core system grew out of both personal trial and community insight.
167
+
168
+ MARM is the result of combining individual persistence with collective needs, a protocol designed to solve what we all kept running into.
169
+
170
+ ### Discord
171
+
172
+ Join Discord for upcoming features and builds, plus a safe space to share your work and get constructive feedback.
173
+
174
+ [MARM Discord](https://discord.gg/EuBsHvSRks)
175
+
176
+ ---
177
+
178
+ ## Before MARM vs After MARM
179
+
180
+ **Without MARM:**
181
+
182
+ - "Wait, what were we discussing about the database schema?"
183
+ - AI repeats previous suggestions you already rejected
184
+ - Loses track of project requirements mid-conversation
185
+ - Starts from scratch every time you return
186
+
187
+ **With MARM:**
188
+
189
+ - AI references your logged project notes and decisions
190
+ - Maintains context across multiple sessions
191
+ - Builds on previous discussions instead of starting over
192
+ - Remembers what works and what doesn't for your project
193
+
194
+ ---
195
+
196
+ ## Why Use MARM?
197
+
198
+ Modern LLMs often lose context or fabricate information. MARM introduces a session memory kernel, structured logs, and a user-controlled knowledge library. Anchoring the AI to *your* logic and data. It’s more than a chatbot wrapper. It’s a methodology for accountable AI.
199
+
200
+ ### Command Overview
201
+
202
+ | **Category** | **Command** | **Function** |
203
+ |--------------|-------------|--------------|
204
+ | **Session** | `/start marm` | Activate protocol |
205
+ | | `/refresh marm` | Reaffirm/reset context |
206
+ | **Core** | `/log` | Start structured session logging |
207
+ | | `/notebook` | Store key data |
208
+ | | `/summary:` | Summarize and reseed sessions |
209
+ | **Advanced** | `/deep dive` | Request context-aware response |
210
+ | | `/show reasoning` | Reveal logic trail of last answer |
211
+
212
+ Need a walkthrough or troubleshooting help? The [`MARM-HANDBOOK.md`](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/MARM-HANDBOOK.md) covers all aspects of using MARM.
213
+
214
+ ---
215
+
216
+ # 🛠️ MARM MCP Server Guide
217
+
218
+ Now that you understand the ecosystem, here's info and how to actually use the MCP server with your AI agents
219
+
220
+ ---
221
+
222
+ ## 🛠️ Complete MCP Tool Suite (19 Tools)
223
+
224
+ | **Category** | **Tool** | **Description** |
225
+ |--------------|----------|-----------------|
226
+ | **🧠 Memory Intelligence** | `marm_smart_recall` | AI-powered semantic similarity search across all memories. Supports global search with `search_all=True` flag |
227
+ | | `marm_contextual_log` | Intelligent auto-classifying memory storage using vector embeddings |
228
+ | **🚀 Session Management** | `marm_start` | Activate MARM intelligent memory and response accuracy layers |
229
+ | | `marm_refresh` | Refresh AI agent session state and reaffirm protocol adherence |
230
+ | **📚 Logging System** | `marm_log_session` | Create or switch to named session container |
231
+ | | `marm_log_entry` | Add structured log entry with auto-date formatting |
232
+ | | `marm_log_show` | Display all entries and sessions (filterable) |
233
+ | | `marm_log_delete` | Delete specified session or individual entries |
234
+ | **🔄 Reasoning & Workflow** | `marm_summary` | Generate context-aware summaries with intelligent truncation for LLM conversations |
235
+ | | `marm_context_bridge` | Smart context bridging for seamless AI agent workflow transitions |
236
+ | **📔 Notebook Management** | `marm_notebook_add` | Add new notebook entry with semantic embeddings |
237
+ | | `marm_notebook_use` | Activate entries as instructions (comma-separated) |
238
+ | | `marm_notebook_show` | Display all saved keys and summaries |
239
+ | | `marm_notebook_delete` | Delete specific notebook entry |
240
+ | | `marm_notebook_clear` | Clear the active instruction list |
241
+ | | `marm_notebook_status` | Show current active instruction list |
242
+ | **⚙️ System Utilities** | `marm_current_context` | Get current date/time for accurate log entry timestamps |
243
+ | | `marm_system_info` | Comprehensive system information, health status, and loaded docs |
244
+ | | `marm_reload_docs` | Reload documentation into memory system |
245
+
246
+ ---
247
+
248
+ ## 🏗️ Architecture Overview
249
+
250
+ ### **Core Technology Stack**
251
+
252
+ ```txt
253
+ FastAPI (0.115.4) + FastAPI-MCP (0.4.0) - v2.1.0
254
+ ├── SQLite with WAL Mode + Custom Connection Pooling
255
+ ├── Sentence Transformers (all-MiniLM-L6-v2) + Semantic Search
256
+ ├── Structured Logging (structlog) + Memory Monitoring (psutil)
257
+ ├── IP-Based Rate Limiting + Usage Analytics
258
+ ├── MCP Response Size Compliance (1MB limit)
259
+ ├── Event-Driven Automation System
260
+ ├── Docker Containerized Deployment + Health Monitoring
261
+ └── Advanced Memory Intelligence + Auto-Classification
262
+ ```
263
+
264
+ ### **Database Schema (5 Tables)**
265
+
266
+ #### `memories` - Core Memory Storage
267
+
268
+ ```sql
269
+ CREATE TABLE memories (
270
+ id TEXT PRIMARY KEY,
271
+ session_name TEXT NOT NULL,
272
+ content TEXT NOT NULL,
273
+ embedding BLOB, -- AI vector embeddings for semantic search
274
+ timestamp TEXT NOT NULL,
275
+ context_type TEXT DEFAULT 'general', -- Auto-classified content type
276
+ metadata TEXT DEFAULT '{}',
277
+ created_at TEXT DEFAULT CURRENT_TIMESTAMP
278
+ );
279
+ ```
280
+
281
+ #### `sessions` - Session Management
282
+
283
+ ```sql
284
+ CREATE TABLE sessions (
285
+ session_name TEXT PRIMARY KEY,
286
+ marm_active BOOLEAN DEFAULT FALSE,
287
+ created_at TEXT DEFAULT CURRENT_TIMESTAMP,
288
+ last_accessed TEXT DEFAULT CURRENT_TIMESTAMP,
289
+ metadata TEXT DEFAULT '{}'
290
+ );
291
+ ```
292
+
293
+ #### Plus: `log_entries`, `notebook_entries`, `user_settings`
294
+
295
+ ---
296
+
297
+ ## 📈 Performance & Scalability
298
+
299
+ ### **Production Optimizations**
300
+
301
+ - **Custom SQLite Connection Pool**: Thread-safe with configurable limits (default: 5)
302
+ - **WAL Mode**: Write-Ahead Logging for concurrent access performance
303
+ - **Lazy Loading**: Semantic models loaded only when needed (resource efficient)
304
+ - **Intelligent Caching**: Memory usage optimization with cleanup cycles
305
+ - **Response Size Management**: MCP 1MB compliance with smart truncation
306
+
307
+ ### **Rate Limiting Tiers**
308
+
309
+ - **Default**: 60 requests/minute, 5min cooldown
310
+ - **Memory Heavy**: 20 requests/minute, 10min cooldown (semantic search)
311
+ - **Search Operations**: 30 requests/minute, 5min cooldown
312
+
313
+ ---
314
+
315
+ ## 📚 Documentation for MCP
316
+
317
+ | Guide Type | Document | Description |
318
+ |------------|----------|-------------|
319
+ | **Docker Setup** | **[INSTALL-DOCKER.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-DOCKER.md)** | Cross-platform, production deployment |
320
+ | **Windows Setup** | **[INSTALL-WINDOWS.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-WINDOWS.md)** | Native Windows development |
321
+ | **Linux Setup** | **[INSTALL-LINUX.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-LINUX.md)** | Native Linux development |
322
+ | **Platform Integration** | **[INSTALL-PLATFORM.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-PLATFORM.md)** | App & API integration |
323
+ | **MCP Handbook** | **[MCP-HANDBOOK.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/MCP-HANDBOOK.md)** | Complete usage guide with all 19 MCP tools, cross-app memory strategies, pro tips, and FAQ |
324
+
325
+ ---
326
+
327
+ ## 🆚 Competitive Advantage
328
+
329
+ ### **vs. Basic MCP Implementations**
330
+
331
+ | Feature | MARM v2.1.0 | Basic MCP Servers |
332
+ |---------|-------------|-------------------|
333
+ | **Memory Intelligence** | AI-powered semantic search with auto-classification | Basic key-value storage |
334
+ | **Tool Coverage** | 19 complete MCP protocol tools | 3-5 basic wrappers |
335
+ | **Scalability** | Database optimization + connection pooling | Single connection |
336
+ | **MCP Compliance** | 1MB response size management | No size controls |
337
+ | **Deployment** | Docker containerization + health monitoring | Local development only |
338
+ | **Analytics** | Usage tracking + business intelligence | No tracking |
339
+ | **Codebase Maturity** | 2,500+ lines professional code | 200-800 lines |
340
+
341
+ ---
342
+
343
+ ## 🤝 Contributing
344
+
345
+ **Aren't you sick of explaining every project you're working on to every LLM you work with?**
346
+
347
+ MARM is building the solution to this. Support now to join a growing ecosystem - this is just **Phase 1 of a 3-part roadmap** and our next build will complement MARM like peanut butter and jelly.
348
+
349
+ **Join the repo that's working to give YOU control over what is remembered and how it's remembered.**
350
+
351
+ ### **Why Contribute Now?**
352
+
353
+ - **Ground floor opportunity** - Be part of the MCP memory revolution from the beginning
354
+ - **Real impact** - Your contributions directly solve problems you face daily with AI agents
355
+ - **Growing ecosystem** - Help build the infrastructure that will power tomorrow's AI workflows
356
+ - **Phase 1 complete** - Proven foundation ready for the next breakthrough features
357
+
358
+ ### **Development Priorities**
359
+
360
+ 1. **Load Testing**: Validate deployment performance under real AI workloads
361
+ 2. **Documentation**: Expand API documentation and LLM integration guides
362
+ 3. **Performance**: AI model caching and memory optimization
363
+ 4. **Features**: Additional MCP protocol tools and multi-tenant capabilities
364
+
365
+ ---
366
+
367
+ ## Join the MARM Community
368
+
369
+ **Help build the future of AI memory - no coding required!**
370
+
371
+ **Connect:** [MARM Discord](https://discord.gg/EuBsHvSRks) | [GitHub Discussions](https://github.com/Lyellr88/MARM-Systems/discussions)
372
+
373
+ ### Easy Ways to Get Involved
374
+
375
+ - **Try the MCP server or Chatbot** and share your experience
376
+ - **Star the repo** if MARM solves a problem for you
377
+ - **Share on social** - help others discover memory-enhanced AI
378
+ - **Open [issues](https://github.com/Lyellr88/MARM-Systems/issues)** with bugs, feature requests, or use cases
379
+ - **Join discussions** about AI reliability and memory
380
+
381
+ ### For Developers
382
+
383
+ - **Build integrations** - MCP tools, browser extensions, API wrappers
384
+ - **Enhance the memory system** - improve semantic search and storage
385
+ - **Expand platform support** - new deployment targets and integrations
386
+ - **Submit [Pull Requests](https://github.com/Lyellr88/MARM-Systems/pulls)** - Every PR helps MARM grow. Big or small, I review each with respect and openness to see how it can improve the project
387
+
388
+ ### ⭐ Star the Project
389
+
390
+ If MARM helps with your AI memory needs, please star the repository to support development!
391
+
392
+ ---
393
+
394
+ <div align="center">
395
+
396
+ [![Star History Chart](https://api.star-history.com/svg?repos=Lyellr88/MARM-Systems&type=Date)](https://star-history.com/#Lyellr88/MARM-Systems&Date)
397
+ </div>
398
+
399
+ ---
400
+
401
+ ### License & Usage Notice
402
+
403
+ This project is licensed under the MIT License. Forks and derivative works are permitted.
404
+
405
+ However, use of the **MARM name** and **version numbering** is reserved for releases from the [official MARM repository](https://github.com/Lyellr88/MARM-Systems).
406
+
407
+ Derivatives should clearly indicate they are unofficial or experimental.
408
+
409
+ ---
410
+
411
+ ## 📁 Project Documentation
412
+
413
+ ### **Usage Guides**
414
+
415
+ - **[MCP-HANDBOOK.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/MCP-HANDBOOK.md)** - Complete MCP server usage guide with commands, workflows, and examples
416
+ - **[PROTOCOL.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/PROTOCOL.md)** - Quick start commands and protocol reference
417
+ - **[FAQ.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/FAQ.md)** - Answers to common questions about using MARM
418
+
419
+ ### **MCP Server Installation**
420
+
421
+ - **[INSTALL-DOCKER.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-DOCKER.md)** - Docker deployment (recommended)
422
+ - **[INSTALL-WINDOWS.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-WINDOWS.md)** - Windows installation guide
423
+ - **[INSTALL-LINUX.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-LINUX.md)** - Linux installation guide
424
+ - **[INSTALL-PLATFORMS.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/INSTALL-PLATFORMS.md)** - Platfrom installtion guide
425
+
426
+ ### **Project Information**
427
+
428
+ - **[README.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/README.md)** - This file - ecosystem overview and MCP server guide
429
+ - **[CONTRIBUTING.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/CONTRIBUTING.md)** - How to contribute to MARM
430
+ - **[DESCRIPTION.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/DESCRIPTION.md)** - Protocol purpose and vision overview
431
+ - **[CHANGELOG.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/CHANGELOG.md)** - Version history and updates
432
+ - **[ROADMAP.md](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/ROADMAP.md)** - Planned features and development roadmap
433
+ - **[LICENSE](https://github.com/Lyellr88/MARM-Systems/blob/MARM-main/docs/LICENSE)** - MIT license terms
434
+
435
+ ---
436
+
437
+ mcp-name: io.github.lyellr88/marm-mcp-server
438
+
439
+ >Built with ❤️ by MARM Systems - Universal MCP memory intelligence