Metadata-Version: 2.4
Name: adaptive-agent-mcp
Version: 0.5.2
Summary: Self-Evolving RAG for AI Agents — A cross-app persistent memory system where agents autonomously write, retrieve, and evolve their knowledge
Project-URL: Homepage, https://github.com/justforever17/adaptive-agent-mcp
Project-URL: Repository, https://github.com/justforever17/adaptive-agent-mcp
Project-URL: Documentation, https://github.com/justforever17/adaptive-agent-mcp#readme
Author: justforever17
License-Expression: MIT
License-File: LICENSE
Keywords: ai-agent,cross-application,llm,mcp,memory,persistent-memory
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: filelock>=3.16.0
Requires-Dist: httpx>=0.28.0
Requires-Dist: mcp>=1.20.0
Requires-Dist: networkx>=3.4
Requires-Dist: pydantic-settings>=2.6.0
Requires-Dist: pydantic>=2.10.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: sqlite-vec>=0.1.6
Description-Content-Type: text/markdown

<div align="center">

<img src="https://raw.githubusercontent.com/justforever17/adaptive-agent-mcp/main/assets/logo.svg" alt="Adaptive Agent MCP" width="500">

### **Self-Evolving RAG for AI Agents**

> *Agents don't just read memory — they write it.*

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![MCP](https://img.shields.io/badge/MCP-Protocol-green.svg)](https://modelcontextprotocol.io)
[![PyPI](https://img.shields.io/pypi/v/adaptive-agent-mcp.svg)](https://pypi.org/project/adaptive-agent-mcp/)

[**中文**](README_zh.md) | **English**

</div>

---

## 🎯 Core Concept

<table>
<tr>
<td width="50%">

### Traditional RAG

```
User Input → Retrieve KB → Generate
               ↑
            Read-only
        (Human-maintained)
```

</td>
<td width="50%">

### Self-Evolving RAG

```
User Input → Retrieve Memory → Generate
               ↑↓
           Read + Write
    Agent autonomously evolves
```

</td>
</tr>
</table>

**Key Differences:**

| | Traditional RAG | Adaptive Agent MCP |
|:---:|:---|:---|
| 📖 | Retrieves pre-indexed documents | Dynamically accumulates at runtime |
| ✍️ | Human-maintained knowledge base | **Agent writes autonomously** |
| 🎯 | Generic knowledge | **User-specific memory** |
| 🔄 | Static data | **Continuously evolves** |

---

## ✨ How It Works

```
📍 In Claude Code: "Remember, I prefer TypeScript"
         ↓
    Agent automatically calls:
    • append_daily_log() → Record to daily log
    • update_preference() → Update preferences
    • extract_knowledge() → Extract knowledge graph
         ↓
📍 In Antigravity: "What are my coding preferences?"
         ↓
    AI: "You prefer TypeScript"
```

**Teach once, remember forever. Share across apps, never forget.**

---

## 🚀 Quick Start

### Installation

Configure `mcp.json` in any MCP-compatible AI application:

**Basic Configuration:**
```json
{
  "mcpServers": {
    "adaptive-agent-mcp": {
      "command": "uvx",
      "args": ["adaptive-agent-mcp"]
    }
  }
}
```

**Full Configuration (with Semantic Search API):**
```json
{
  "mcpServers": {
    "adaptive-agent-mcp": {
      "command": "uvx",
      "args": ["adaptive-agent-mcp"],
      "env": {
        "ADAPTIVE_EMBEDDING_BASE_URL": "https://api.openai.com/v1",
        "ADAPTIVE_EMBEDDING_API_KEY": "your-api-key",
        "ADAPTIVE_EMBEDDING_MODEL": "text-embedding-3-small",
        "ADAPTIVE_RERANK_BASE_URL": "https://api.cohere.ai/v1",
        "ADAPTIVE_RERANK_API_KEY": "your-api-key",
        "ADAPTIVE_RERANK_MODEL": "rerank-english-v3.0"
      }
    }
  }
}
```

> Default storage path: `~/.adaptive-agent/memory`. All apps share the same memory.

---

## 🧩 Features

| Feature | Description | Version |
|:---|:---|:---:|
| **Three-Layer Memory** | MEMORY.md + Daily Logs + Knowledge Graph | v0.1.0 |
| **Scope Isolation** | `project:xxx`, `app:xxx`, `global` | v0.2.0 |
| **Concurrent Safety** | Cross-process file locking | v0.3.0 |
| **Incremental Indexing** | mtime-based smart updates | v0.3.0 |
| **Semantic Search** | Embedding + Rerank API | v0.4.0 |
| **FTS5 Full-text** | SQLite built-in search | v0.4.0 |
| **Knowledge Graph** | NetworkX-based entity relations | v0.5.0 |

---

## 🔧 Available Tools

### Memory Management
| Tool | Description |
|:---|:---|
| `initialize_session` | Initialize session with user profile and recent context |
| `append_daily_log` | Append content to today's log |
| `update_preference` | Intelligently update user preferences |
| `query_memory_headers` | Query memory file metadata |
| `read_memory_content` | Read complete memory file content |
| `search_memory_content` | Full-text search using ripgrep |

### Semantic Search
| Tool | Description |
|:---|:---|
| `semantic_search` | Vector similarity search |
| `fulltext_search` | FTS5 keyword search with BM25 ranking |
| `index_document` | Index document to vector store |

### Knowledge Graph
| Tool | Description |
|:---|:---|
| `extract_knowledge` | Extract entity relations from text |
| `add_knowledge_relation` | Manually add relations |
| `query_knowledge_graph` | Query entities, relations, or stats |
| `multi_hop_query` | Multi-hop reasoning queries |

---

## 📁 Storage Structure

```
~/.adaptive-agent/memory/
├── MEMORY.md              # User preferences (scope-based)
├── .knowledge/
│   └── items.json         # Atomic facts
├── .vector/
│   └── vector.db          # SQLite + sqlite-vec
├── .graph/
│   └── knowledge.json     # NetworkX graph
└── 2026/
    └── 02_february/
        └── week_06/
            └── 2026-02-07.md  # Daily logs
```

---

## 🔐 Data Safety

- **Isolated storage**: Data stored in `~/.adaptive-agent/memory`, independent of uvx installation
- **Concurrent safety**: filelock prevents data corruption from multiple clients
- **Human-readable**: All data in Markdown/JSON format, easy to backup and version control

---

## 📖 Documentation

- [Architecture Design](docs/架构设计.md) (Chinese)
- [Local Model Setup](docs/setup_local_model.md)
- [Changelog](CHANGELOG.md)

---

## 📄 License

MIT License - See [LICENSE](LICENSE) for details.

---

<div align="center">

**Adaptive Agent MCP** — *Where agents learn, remember, and evolve.*

</div>
