AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Dsm Mcp

mcp-narelabs-dsm-mcp · by narelabs

Dynamic Segmented Memory (DSM) engine for AI agents via Model Context Protocol (MCP).

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add mcp-narelabs-dsm-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-narelabs-dsm-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Dsm Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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_reason tool 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.