Top-level workspace aggregating agent and mcp_server
Project description
mem-agent-mcp
This is an MCP server for our model driaforall/mem-agent, which can be connected to apps like Claude Desktop or Lm Studio to interact with an obsidian-like memory system.
Supported Platforms
- macOS (Metal backend)
- Linux (with GPU, vLLM backend)
Platform note: aarch64 (ARM64) Linux
- On ARM64 Linux, vLLM is not installed by default to avoid build failures (no stable wheels and source builds can fail).
- Installation will succeed without vLLM; you can:
- Use the default OpenRouter/OpenAI path (no local vLLM needed), or
- Run vLLM on a compatible x86_64 host and point the client at it (see agent/model.py create_vllm_client).
Running Instructions
Using a LiteLLM proxy (OpenAI-compatible)
- If you have a LiteLLM proxy running locally (e.g., on port 4000), configure the client via .env:
VLLM_HOST=localhost
VLLM_PORT=4000
- Verify connectivity:
curl http://localhost:4000/v1/models
- Then use either of these:
- CLI:
make chat-cli - MCP over STDIO:
make serve-mcp - MCP over HTTP:
make serve-mcp-http
- CLI:
Note: On ARM64 Linux, this is the recommended setup instead of vLLM.
make check-uv(if you have uv installed, skip this step).make install: Installs LmStudio on MacOS.make setup: This will open a file selector and ask you to select the directory where you want to store the memory.make run-agent: If you're on macOS, this will prompt you to select the precision of the model you want to use. 4-bit is very usable as tested, and higher precision models are more reliable but slower.make generate-mcp-json: Generates themcp.jsonfile. That will be used in the next step.- Instructions per app/provider:
- Claude Desktop:
- Copy the generated
mcp.jsonto the where yourclaude_desktop.jsonis located, then, quit and restart Claude Desktop. Check this guide for detailed instructions.
- Copy the generated
- Lm Studio:
- Copy the generated
mcp.jsonto themcp.jsonof Lm Studio. Check this guide for detailed instructions. If there are problems, change the name of the model in .mlx_model_name (found in the root of this repo) frommem-agent-mlx-4bitormem-agent-mlx-8bittomem-agent-mlx@4bitormem-agent-mlx@8bitrespectively.
- Copy the generated
- Claude Desktop:
Memory Instructions
- Each memory directory should follow the structure below:
memory/
├── user.md
└── entities/
└── [entity_name_1].md
└── [entity_name_2].md
└── ...
user.mdis the main file that contains information about the user and their relationships, accompanied by links to the enity file in the format of[[entities/[entity_name].md]]per relationship. The link format should be followed strictly.entities/is the directory that contains the entity files.- Each entity file follows the same structure as
user.md. - Modifying the memory manually does not require restarting the MCP server.
Example user.md
# User Information
- user_name: John Doe
- birth_date: 1990-01-01
- birth_location: New York, USA
- living_location: Enschede, Netherlands
- zodiac_sign: Aquarius
## User Relationships
- company: [[entities/acme_corp.md]]
- mother: [[entities/jane_doe.md]]
Example entity files (jane_doe.md and acme_corp.md)
# Jane Doe
- relationship: Mother
- birth_date: 1965-01-01
- birth_location: New York, USA
# Acme Corporation
- industry: Software Development
- location: Enschede, Netherlands
Filtering
The model is trained to accepts filters on various domains in between
What's my mother's age? <filter> 1. Do not reveal explicit age information, 2. Do not reveal any email addresses </filter>
To use this, functionality with the MCP, you have two make targets:
make add-filters: Opens an input loop and adds the filters given by the user to the .filters file.make reset-filters: Resets the .filters file (clears it).
Adding or removing filters does not require restarting the MCP server.
Memory Connectors
Available Connectors
| Connector | Description | Supported Formats | Type |
|---|---|---|---|
chatgpt |
ChatGPT conversation exports | .zip, .json |
Export |
notion |
Notion workspace exports | .zip |
Export |
nuclino |
Nuclino workspace exports | .zip |
Export |
github |
GitHub repositories via API | Live API | Live |
google-docs |
Google Docs folders via Drive API | Live API | Live |
Usage
🧙♂️ Interactive Memory Wizard (Recommended)
The easiest way to connect your memory sources:
make memory-wizard
# or
python memory_wizard.py
The wizard will guide you through:
- ✅ Connector selection with descriptions
- ✅ Authentication setup (tokens, scopes)
- ✅ Source configuration (files, URLs, IDs)
- ✅ Output directory setup
- ✅ Connector-specific options
- ✅ Configuration confirmation
- ✅ Automatic execution
- ✅ Success confirmation with next steps
Manual CLI Usage
Quick Demo with Sample Memories:
make run-agent
make serve-mcp-http
python examples/mem_agent_cli.py
Sample memory packs (healthcare and client_success) are included to demonstrate mem-agent functionality with different data types. Use the interactive CLI to explore these memories and test prompts.
List Available Connectors:
make connect-memory
# or
python memory_connectors/memory_connect.py --list
#### ChatGPT History Import
```bash
# Basic usage
make connect-memory CONNECTOR=chatgpt SOURCE=/path/to/chatgpt-export.zip
# AI-powered categorization with TF-IDF (fast)
python memory_connectors/memory_connect.py chatgpt /path/to/export.zip --method ai --embedding-model tfidf
# AI-powered categorization with LM Studio (high-quality semantic)
python memory_connectors/memory_connect.py chatgpt /path/to/export.zip --method ai --embedding-model lmstudio
# Keyword-based with custom categories
python memory_connectors/memory_connect.py chatgpt /path/to/export.zip --method keyword --edit-keywords
# Process limited conversations
python memory_connectors/memory_connect.py chatgpt /path/to/export.zip --max-items 100
Categorization Methods:
- Keyword-based: Fast, customizable categories using predefined keywords
- AI-powered (TF-IDF): Statistical clustering, discovers conversation patterns
- AI-powered (LM Studio): Semantic embeddings via neural networks (requires LM Studio)
Custom output location
make connect-memory CONNECTOR=chatgpt SOURCE=/path/to/export.zip OUTPUT=./memory/custom
Process only first 100 conversations
make connect-memory CONNECTOR=chatgpt SOURCE=/path/to/export.zip MAX_ITEMS=100
Direct CLI usage
python memory_connect.py chatgpt /path/to/export.zip --output ./memory --max-items 100
Notion Workspace Import
# Basic usage
make connect-memory CONNECTOR=notion SOURCE=/path/to/notion-export.zip
# Custom output location
make connect-memory CONNECTOR=notion SOURCE=/path/to/export.zip OUTPUT=./memory/custom
python memory_connectors/memory_connect.py notion /path/to/export.zip --output ./memory
Getting ChatGPT Export
- Go to ChatGPT Settings
- Click "Export data"
- Wait for email with download link
- Extract the ZIP file
- Use the extracted folder or ZIP file with the connector
Nuclino Workspace Import
# Basic usage
make connect-memory CONNECTOR=nuclino SOURCE=/path/to/nuclino-export.zip
# Custom output location
make connect-memory CONNECTOR=nuclino SOURCE=/path/to/export.zip OUTPUT=./memory/custom
# Direct CLI usage
python memory_connectors/memory_connect.py nuclino /path/to/export.zip --output ./memory
Getting Notion Export
- Go to your Notion workspace settings
- Click "Settings & members" → "Settings"
- Scroll to "Export content" and click "Export all workspace content"
- Choose "Markdown & CSV" format
- Click "Export" and wait for the download
- Use the downloaded ZIP file with the connector
Getting Nuclino Export
- Go to your Nuclino workspace
- Open the main menu (☰) in the top left
- Click the three dots (⋮) next to your workspace name
- Select "Workspace settings"
- Click "Export Workspace" in the Export section
- Save the generated ZIP file
- Use the downloaded ZIP file with the connector
GitHub Live Integration
# Basic usage - single repository
make connect-memory CONNECTOR=github SOURCE="microsoft/vscode" TOKEN=your_github_token
# Multiple repositories
make connect-memory CONNECTOR=github SOURCE="owner/repo1,owner/repo2" TOKEN=your_token
# Custom output and limits
make connect-memory CONNECTOR=github SOURCE="facebook/react" OUTPUT=./memory/custom MAX_ITEMS=50 TOKEN=your_token
# Direct CLI usage with interactive token input
python memory_connectors/memory_connect.py github "microsoft/vscode" --max-items 100
# Include specific content types
python memory_connectors/memory_connect.py github "owner/repo" --include-issues --include-prs --include-wiki --token your_token
Getting GitHub Personal Access Token
- Go to GitHub Settings → Tokens
- Click "Generate new token" → "Generate new token (classic)"
- Set expiration and select scopes:
- For public repositories:
public_reposcope - For private repositories:
reposcope (full access)
- For public repositories:
- Click "Generate token" and copy the generated token
- Use the token with the
--tokenparameter or enter it when prompted
Note: Keep your token secure and never commit it to version control!
Google Docs Live Integration
# Basic usage - specific folder
make connect-memory CONNECTOR=google-docs SOURCE="1ABC123DEF456_folder_id" TOKEN=your_access_token
# Using Google Drive folder URL
make connect-memory CONNECTOR=google-docs SOURCE="https://drive.google.com/drive/folders/1ABC123DEF456" TOKEN=your_token
# Custom output and limits
make connect-memory CONNECTOR=google-docs SOURCE="folder_id" OUTPUT=./memory/custom MAX_ITEMS=20 TOKEN=your_token
# Direct CLI usage with interactive token input
python memory_connectors/memory_connect.py google-docs "1ABC123DEF456_folder_id" --max-items 15
Getting Google Drive Access Token
Option 1: Google OAuth 2.0 Playground (Quick Testing)
- Go to Google OAuth 2.0 Playground
- In "Select & Authorize APIs" section:
- Find "Drive API v3"
- Select
https://www.googleapis.com/auth/drive.readonly
- Click "Authorize APIs" and sign in to your Google account
- Click "Exchange authorization code for tokens"
- Copy the "Access token" (valid for ~1 hour)
Option 2: Google Cloud Console (Production Use)
- Go to Google Cloud Console
- Create a new project or select existing one
- Enable the "Google Drive API"
- Go to "Credentials" → "Create Credentials" → "OAuth 2.0 Client ID"
- Configure OAuth consent screen if needed
- Download the credentials JSON file
- Use Google's OAuth 2.0 libraries to get access tokens
Required Scopes: https://www.googleapis.com/auth/drive.readonly
Finding Folder ID from Google Drive URL:
- From URL:
https://drive.google.com/drive/folders/1ABC123DEF456ghi789 - Folder ID:
1ABC123DEF456ghi789
Note: Access tokens expire (usually 1 hour). For production use, implement token refresh or use service accounts.
Memory Organization
The connectors automatically organize your conversations into:
- Topics: Conversations grouped by subject (AI Agents, Programming, Product Strategy, etc.)
- User Profile: Your communication style and preferences
- Entity Links: Cross-referenced relationships and projects
- Search Strategy: Optimized for mem-agent discovery
Example organized structure:
memory/mcp-server/
├── user.md # Your profile and navigation
└── entities/
└── chatgpt-history/
├── index.md # Overview and usage examples
├── topics/ # Topic-organized conversation lists
│ ├── dria.md
│ ├── ai-agents.md
│ └── programming.md
└── conversations/ # Individual conversation files
├── conv_0-project-discussion.md
└── conv_1-technical-planning.md
Testing Your Memory
After importing, test the memory system:
- Start the mem-agent:
make run-agent - Start Claude Desktop with the MCP server
- Ask questions like:
- "What can you tell me about our product roadmap?"
- "What were my thoughts on AI agent frameworks?"
- "Summarize my recent technical discussions"
The agent should access your real conversation history instead of providing generic responses.
Architecture
Mem-Agent
- Dria's Memory Agent: Specialized LLM fine-tuned for memory management and retrieval
- Local Deployment: Runs via LM Studio (MLX) or vLLM for privacy and speed
- Multiple Variants: 4-bit, 8-bit, and bf16 quantizations available
- Tool Integration: Purpose-built for file operations and memory search
Memory Structure
- Obsidian-style: Markdown files with wikilink navigation
- Topic Organization: Automatic categorization by subject matter
- Entity Relationships: Cross-referenced connections between conversations
- Search Optimization: Structured for efficient agent discovery
MCP Integration
- FastMCP Framework: High-performance Model Context Protocol server
- Claude Desktop: Claude's desktop app
- Claude Code: Anthropic's agentic coding tool that lives in your terminal
Claude Code Setup
Prerequisites: Start your memory server first:
make run-agent # Required: vLLM or MLX model server must be running
Add MCP Server:
claude mcp add mem-agent \
--env MEMORY_DIR="/path/to/your/memory/directory" \
-- python "/path/to/mcp_server/server.py"
Verify & Use:
claude mcp list # Should show mem-agent as connected
Now Claude Code can access your memory system for contextual assistance during development.
- Tool Execution: Sandboxed code execution for memory operations
- Debug Logging: Comprehensive logging for troubleshooting
ChatGPT Integration
Prerequisites: Complete memory setup and start your local agent:
make setup # Configure memory directory
make run-agent # Start local vLLM/MLX model server
Start MCP-Compliant HTTP Server:
make serve-mcp-http # Starts server on localhost:8081/mcp
Expose with ngrok (separate terminal):
ngrok http 8081 # Copy the forwarding URL
Configure ChatGPT:
- Go to ChatGPT Settings → Connectors
- Enable Developer mode in Advanced settings
- Add new MCP server:
- Name:
mem-agent - URL:
https://your-ngrok-url.ngrok.io/mcp - Protocol: HTTP
- Authentication: None
- Name:
Usage in ChatGPT:
Select Developer mode → Choose mem-agent connector → Ask questions like:
- "Use mem-agent to search my memory for discussions about AI research"
- "Query my memory for information about recent project work"
Troubleshooting
Common Issues
Agent returns generic responses instead of using memory:
- Check that memory files exist in the configured path
- Verify user.md contains proper topic navigation
- Enable debug logging to see agent's reasoning process
- Test with direct questions about known conversation topics
MCP connection issues:
- Check Claude Desktop configuration in
~/.config/claude/claude_desktop.json - Verify PATH configuration includes LM Studio binary
- Increase timeout settings for large memory imports
- Review logs in
~/Library/Logs/Claude/mcp-server-memory-agent-stdio.log
Memory import failures:
- Ensure export format is supported (.zip or .json for ChatGPT)
- Check file permissions and disk space
- Try with --max-items to limit processing scope
- Verify export contains expected data structure
Debug Mode
Enable detailed logging by setting environment variables:
FASTMCP_LOG_LEVEL=DEBUG make serve-mcp
Or check the agent's internal reasoning in the log files during operation.
Development
Adding New Connectors
- Create connector class inheriting from
BaseMemoryConnector - Implement required methods:
extract_data(),organize_data(),generate_memory_files() - Add to connector registry in
memory_connect.py - Update README with usage examples
Example connector skeleton:
from memory_connectors.base import BaseMemoryConnector
class MyConnector(BaseMemoryConnector):
@property
def connector_name(self) -> str:
return "My Service"
@property
def supported_formats(self) -> list:
return ['.zip', '.json']
def extract_data(self, source_path: str) -> Dict[str, Any]:
# Parse source data
pass
def organize_data(self, extracted_data: Dict[str, Any]) -> Dict[str, Any]:
# Organize into topics
pass
def generate_memory_files(self, organized_data: Dict[str, Any]) -> None:
# Generate markdown files
pass
Contributing
This system is designed as local add-ons that don't affect the main mem-agent-mcp repository:
- Memory connectors are local extensions
- Legacy compatibility is maintained
- All changes preserve existing functionality
- Debug improvements enhance troubleshooting
Pull requests welcome for new connectors and improvements!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file iflow_mcp_firstbatchxyz_mem_agent_mcp-0.1.0.tar.gz.
File metadata
- Download URL: iflow_mcp_firstbatchxyz_mem_agent_mcp-0.1.0.tar.gz
- Upload date:
- Size: 45.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ebda9860c924528d22bf4570d7221d38445b536f62d2498e3b16a728f75ab79
|
|
| MD5 |
dfa21b00dc80e913c8dbf2936e9a66ec
|
|
| BLAKE2b-256 |
5bc0bb444b5c429912841cc3a91e7d1d5ec84ee41b000eef79962b6c8aeb9ce1
|
File details
Details for the file iflow_mcp_firstbatchxyz_mem_agent_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: iflow_mcp_firstbatchxyz_mem_agent_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 48.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3a1ae1a65c88301984924932c711a1649a4483858f8a79b8404883b3ccecce9
|
|
| MD5 |
9a2fc0f90c45c2ffcfbcb4974ef60d31
|
|
| BLAKE2b-256 |
bf23a3d446fc981685b85d26ee9164c193cba50df78d61291871a4fe95ac8ef1
|