Install
$ agentstack add mcp-narelabs-dsm-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
🛰️ DSM: Dynamic Segmented Memory (MCP Server)
[](https://modelcontextprotocol.io) [](https://opensource.org/licenses/MIT) []()
DSM is a high-performance Dynamic Segmented Memory engine implemented as an MCP (Model Context Protocol) server.
Unlike traditional vector databases, DSM organizes information into a hierarchy of segments, supports hybrid search, and enables multi-hop reasoning directly over your knowledge base.
🔌 What is MCP?
The Model Context Protocol (MCP) is an open standard that enables AI agents (like Claude Desktop, Cursor, or Windsurf) to securely connect to external data and tools.
By running DSM as an MCP server, you give your AI agent a persistent "long-term memory" that it can query, write to, and reason with, using a standardized set of tools.
🛠️ Features
- Hybrid Search: Seamlessly combines Dense (semantic) and Sparse (BM25) search for maximum retrieval precision.
- Reasoning: The
dsm_reasontool allows agents to traverse the memory graph, finding deep connections instead of just keywords. - Auto-Sync: One-click indexing of your entire project via
dsm_sync. - Conflict Control: Automatically detects contradictory information within the memory.
🚀 Quick Start
1. Install
pip install mcp dsm-memory
2. Configure MCP
Add the server to your claude_desktop_config.json or .claude.json:
{
"mcpServers": {
"dsm": {
"command": "python",
"args": ["path/to/mcp_server.py"],
"env": {
"DSM_PROJECT_ROOT": "/path/to/your/project"
}
}
}
}
🔌 Tools
dsm_search: Fast hybrid search over all memory segments.dsm_write: Manually commit new insights or architectural data.dsm_reason: Multi-hop recursive search for deep context.dsm_sync: Full codebase indexing and synchronization.dsm_info: Live statistics about the memory state.
📄 License
MIT ©
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: narelabs
- Source: narelabs/dsm-mcp
- License: MIT
- Homepage: https://narelabs.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.