claude-plugins
Verified Safeby jungjaehoon-lifegamez
Overview
MAMA is a memory-augmented assistant for Claude Code that tracks decision evolution and provides automatic context injection to prevent repeating mistakes.
Installation
npx -y @jungjaehoon/mama-serverEnvironment Variables
- MAMA_DISABLE_HOOKS
- MAMA_DISABLE_AUTO_SAVE
- MAMA_CONFIG_PATH
- MAMA_FORCE_TIER_3
- MAMA_FORCE_TIER_2
- MAMA_DEBUG
- MAMA_LOG_LEVEL
- MAMA_LOG_DIR
- MAMA_DB_PATH
- OLLAMA_HOST
- OLLAMA_PORT
- CLAUDE_ENV_FILE
- MAMA_AUTH_TOKEN
- MAMA_DISABLE_HTTP_SERVER
- MAMA_DISABLE_WEBSOCKET
- USER_PROMPT
- TOOL_NAME
- FILE_PATH
- GREP_PATTERN
- DIFF_CONTENT
- CONVERSATION_CONTEXT
Security Notes
The server's network interactions are primarily local (127.0.0.1) for embedding services (port 3847) and Ollama (port 11434), minimizing external attack surface. No obvious hardcoded secrets were found, and authentication tokens are configurable. A minor concern is the direct string interpolation for `rowid` in an SQLite `INSERT` statement (`plugins/mama/src/core/db-adapter/sqlite-adapter.js`). While mitigated by a `Number()` cast and `Number.isInteger()` validation to ensure it's an integer, universally parameterized queries are generally preferred to completely eliminate this class of potential vulnerabilities. However, the comments indicate this is a limitation of the `sqlite-vec` library, and the explicit type enforcement reduces the immediate risk of SQL injection.
Similar Servers
zen-mcp-server
A server for coordinating and managing AI agents, likely for simulations or complex task execution, leveraging Claude LLMs.
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.
mcp-server
Provides an AI-powered Model Context Protocol (MCP) server for integrating with RAD Security's Kubernetes and cloud security insights.
toon-context-mcp
A server designed for managing game or application context, likely in a 'toon' (game/animated) environment, with integration capabilities for AI models like Claude.