agent-memory-mcp
Automation & IntégrationsA hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
Documentation
Agent Memory Skill
This skill provides a persistent, searchable memory bank that automatically syncs with project documentation. It runs as an MCP server to allow reading/writing/searching of long-term memories.
Prerequisites
Setup
Clone the agentMemory project into your agent's workspace or a parallel directory:
```bash
git clone https://github.com/webzler/agentMemory.git .agent/skills/agent-memory
```
```bash
cd .agent/skills/agent-memory
npm install
npm run compile
```
Use the helper script to activate the memory bank for your current project:
```bash
npm run start-server
```
_Example for current directory:_
```bash
npm run start-server my-project $(pwd)
```
Capabilities (MCP Tools)
`memory_search`
Search for memories by query, type, or tags.
query (string), type? (string), tags? (string[])memory_search({ query: "authentication", type: "pattern" })`memory_write`
Record new knowledge or decisions.
key (string), type (string), content (string), tags? (string[])memory_write({ key: "auth-v1", type: "decision", content: "..." })`memory_read`
Retrieve specific memory content by key.
key (string)memory_read({ key: "auth-v1" })`memory_stats`
View analytics on memory usage.
memory_stats({})Dashboard
This skill includes a standalone dashboard to visualize memory usage.
npm run start-dashboard <absolute_path_to_target_workspace>Access at: http://localhost:3333
Compétences similaires
Explorez d'autres agents de la catégorie Automation & Intégrations
full-stack-orchestration-full-stack-feature
"Use when working with full stack orchestration full stack feature"
git-pushing
Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activates when user says "push changes", "commit and push", "push this", "push to github", or similar git workflow requests.
zoom-automation
"Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas."