MemorizedMCP-TS
Verified Safeby PerkyZZ999
Overview
Provides a Bun + TypeScript powered Model Context Protocol (MCP) server with hybrid memory, document intelligence, and knowledge graph tooling for AI agents.
Installation
npx -y memorizedmcp-ts --multi-toolEnvironment Variables
- DATA_ROOT
- TRANSFORMER_MODEL
- MCP_MULTI_TOOL
- LOG_LEVEL
Security Notes
The server includes a `run_code` tool that executes TypeScript code in a sandbox (using `new AsyncFunction()`). While attempts are made to restrict access to globals (only `services` and `console` are injected), direct filesystem access via services (e.g., `document.ingest` within `DATA_ROOT`) and outbound network calls (e.g., `TRANSFORMER_MODEL` download) are part of its intended functionality. A compromised `TRANSFORMER_MODEL` URL or a successfully exploited vulnerability in the sandbox could lead to risks. Users should ensure `DATA_ROOT` permissions are restricted and `TRANSFORMER_MODEL` sources are trusted.
Similar Servers
mcp-memory-service
A Model Context Protocol (MCP) server providing persistent, semantic memory storage and retrieval capabilities for AI agents. It supports lightweight semantic reasoning (contradiction, causal inference), content chunking, multi-backend storage (SQLite-vec, Cloudflare, Hybrid), autonomous memory consolidation (decay, association, clustering, compression, forgetting), and real-time updates via SSE. It's designed for token-efficient interaction with LLMs.
memory-graph
A graph-based MCP server that provides intelligent memory capabilities for Claude Code, enabling persistent knowledge tracking, relationship mapping, and contextual development assistance.
pluggedin-app
A testing environment for MCP (Model Control Protocol) servers, allowing interaction through a chat interface powered by LLMs and an AI agent using the LangChain ReAct framework.
simple-memory-mcp
This server provides persistent AI memory and knowledge graph storage, enabling AI assistants to maintain context across sessions and integrate with tools like Obsidian for visualization.