Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI โ†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt โ†— (opens in a new tab)
  • Catalog JSON โ†— (opens in a new tab)
  • Remote MCP โ†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) โ†— (opens in a new tab)
  • GitHub โ†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
ยฉ 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. ๐Ÿง  Knowledge & Memory
  3. SmartMemory
S
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:07:16 AM

SmartMemory

Enrichment pendingWe havenโ€™t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time โ€” check back soon.
View Repository

Neuro-symbolic memory for LLMs (POC)

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON โ–พ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "smartmemory": {
      "command": "npx",
      "args": [
        "-y",
        "smartmemory"
      ]
    }
  }
}

๐Ÿ’ก Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing Alternatives๐Ÿง  More in Knowledge & Memory

Documentation Overview

๐Ÿง  SmartMemory

Give your LLM structured, verifiable memory โ€” turn conversations into knowledge graphs your AI can reason over.

An MCP server that teaches AI assistants business rules through natural dialogue.

License: MIT Python 3.11+ Model Context Protocol Neuro-symbolic Status: PoC PRs welcome

[!CAUTION] Proof of Concept. SmartMemory is an experimental implementation of a neuro-symbolic architecture, built to explore how LLMs can interact with knowledge graphs to learn and apply rules. It is not intended for production use โ€” treat it as a research and learning playground.


Why SmartMemory?

LLMs are brilliant talkers with no real memory. Across a conversation they forget, they can't explain why they concluded something, and they happily state things that were never verified.

SmartMemory adds the missing half: a symbolic brain.

  • Facts you state are stored in an auditable knowledge graph (RDF), each with its provenance.
  • Logic is captured as explicit, inspectable rules (SPARQL/OWL) โ€” not hidden in weights.
  • New conclusions are derived, traceable, and reversible โ€” and ambiguous ones are sent back to you for validation.

The result is an assistant that doesn't just sound right โ€” it can show its reasoning.


What it can do

SmartMemory turns your AI assistant into a domain expert that supports:

  • Asynchronous reasoning โ€” deductions run in the background (InferenceManager) without slowing the conversation.
  • Uncertainty handling โ€” ambiguous facts trigger a human-in-the-loop validation workflow.
  • Smart NLP extraction โ€” handles complex sentences, coreferences, and direct Turtle notation.
  • Provenance & audit โ€” every stored fact keeps its origin (UUID, source, timestamp).
  • Dynamic rule engine โ€” learns and applies new SPARQL rules on the fly.

How it works

mermaid
flowchart LR
    A["Natural-language<br/>conversation"] -->|LLM extraction| B["Facts"]
    B --> C[("Knowledge Graph<br/>RDF / Turtle")]
    C -->|SPARQL / OWL rules| D["Inference engine"]
    D -->|new deductions| C
    D -->|ambiguous?| E["Human-in-the-loop<br/>validation"]
    E -->|approve rule / fact| C
    C -->|provenance + audit| F["Verifiable answers"]

The LLM is the language cortex (understanding and extraction); the knowledge graph and rule engine are the symbolic memory (storage, logic, proof). Neither alone is enough โ€” together they are neuro-symbolic.


Two ways to use it

๐Ÿ’ฌ Conversational Mode โ€” the "Brain"๐Ÿ—๏ธ Supervision Mode โ€” the "Factory"
ForIndividuals using an LLM client (Claude Desktop, etc.)Teams, developers, heavy users
GoalLet your assistant remember facts and learn logic as you chatExtract thousands of rules from documents (PDFs) and visualize the graph
HowConfigure it as an MCP serverDeploy the full dashboard via Docker
SetupJump to setup โ†“Jump to setup โ†“

Quick start

I want toโ€ฆGo to
Get running in 5 minutesQuick Start Guide
Try the advanced demoDemo Procedure
Understand the internalsArchitecture ยท Neuro-symbolic principles
Configure a providerConfiguration reference
Fix a problemTroubleshooting
Browse all docsDocumentation index

Mode 1 โ€” Conversational Setup (MCP)

Gives your LLM long-term memory and logical deduction.

Option A โ€” Docker (recommended) ๐Ÿณ

No Python required. The image is published on GitHub Container Registry.

Claude Desktop โ€” edit ~/Library/Application Support/Claude/claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "smart-memory": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "ghcr.io/mauriceisrael/smart-memory:latest"]
    }
  }
}

The same block works for any MCP client (e.g. Cline) โ€” just point it at your client's mcp_settings.json. Restart the client and you're done. โœ…

Option B โ€” Local server (from source) ๐Ÿ”’

Best for developers and privacy-conscious users.

bash
git clone https://github.com/MauriceIsrael/SmartMemory
cd SmartMemory
python3 -m venv venv
source venv/bin/activate
pip install -e .

Then point Claude Desktop at your local install:

config.json
{
  "mcpServers": {
    "smartmemory": {
      "command": "/absolute/path/to/SmartMemory/venv/bin/python",
      "args": ["-m", "smart_memory.server"]
    }
  }
}

Restart Claude and try: "I know Bob. He goes to work by car. Can he vote?" โ€” see the demo below.


Mode 2 โ€” Supervision Setup (Docker)

Runs the web dashboard and API server โ€” ideal for visualizing the knowledge graph, extracting rules from PDFs, and hosting a shared memory for a team.

bash
# Dashboard mode โ€” example with Mistral
docker run -p 8080:8080 \
  -e LLM_PROVIDER=mistral \
  -e LLM_MODEL=mistral-large-latest \
  -e LLM_API_KEY=your-api-key \
  -v $(pwd)/brain:/app/data \
  ghcr.io/mauriceisrael/smart-memory:latest dashboard
bash
# Dashboard mode โ€” example with a local model (Ollama)
docker run -p 8080:8080 \
  -e LLM_PROVIDER=ollama \
  -e LLM_MODEL=llama3 \
  -e LLM_BASE_URL=http://172.17.0.1:11434 \
  -v $(pwd)/brain:/app/data \
  ghcr.io/mauriceisrael/smart-memory:latest dashboard

Add dashboard to start the web server; without it the container starts in MCP mode. The -v volume persists your knowledge graph and rules. Open the dashboard at http://localhost:8080.


LLM configuration

SmartMemory uses an LLM to extract facts and rules from natural language and documents. Configure it via the dashboard Admin page or via environment variables (-e LLM_PROVIDER=โ€ฆ).

ProviderExample modelsNotes
Mistralmistral-large-latest, mistral-small-latestEuropean, La Plateforme API
Ollama (local, free)llama3, qwen2.5-coder, mistralRuns offline
OpenAIgpt-4, gpt-3.5-turbo
Anthropicclaude-3-5-sonnet
Googlegemini-1.5-pro

โ†’ Full configuration guide

Extracting rules from documents

  1. Upload a PDF (e.g. Company_Policy.pdf).
  2. Pick a provider โ€” the server needs an API key (or a local Ollama) to read the document.
  3. Review & approve โ€” the system proposes rules; you accept them in bulk from the dashboard.

Interactive demo โ€” from facts to rules

What happens in Conversational Mode:

text
> I know Bob
LLM: โœฆ I've recorded the fact: I know Bob.

> He goes to work by car
LLM: โœฆ Noted: Bob goes to work by car.

> Can Bob vote?
LLM: โœฆ I can't conclude yet โ€” but since he drives, he is likely an adult.
     May I add the rule "Drivers are adults"?

> yes
LLM: โœจ Rule 'drivers_are_adults' added.
     May I also add "Adults can vote"?

> yes
LLM: โœจ Rule 'adults_can_vote' added.
     โœฆ Therefore, yes โ€” Bob can vote. (derived from 2 rules)

Every step is stored, attributed, and replayable โ€” that's the point.


Tech stack

  • Backend: Python 3.11+, RDFLib, FastAPI
  • Frontend: SvelteKit, TypeScript, TailwindCSS
  • Reasoning: Neuro-symbolic (LLM + SPARQL / OWL)
  • Protocol: Model Context Protocol (MCP)
  • Packaging & deploy: Docker, GitHub Container Registry, Google Cloud Run

Roadmap

  • Broaden document ingestion (DOCX, HTML, web pages)
  • Richer graph visualization and rule-conflict detection
  • First tagged release (v0.1.0)

Ideas and contributions welcome โ€” see CONTRIBUTING.md.


License

MIT โ€” see LICENSE.

Related MCP Servers

View all in Knowledge & Memory View all alternatives
  • Moxie Docs MCP logoMoxie Docs MCP
    โ˜… Featured

    MCP & Agent Skills for Automated Documentation, and codebase conventions + context

    ๐Ÿง  Knowledge & Memory17 views
    Compare vs Moxie Docs MCP โ†’
  • Mcp Server logoMcp Server

    Apple Developer Documentation with Semantic Search, RAG, and AI reranking for MCP clients

    ๐Ÿง  Knowledge & Memory0 views
    Compare vs Mcp Server โ†’
  • Mcp logoMcp

    AI memory layer โ€” one shared, persistent memory across every AI tool you connect.

    ๐Ÿง  Knowledge & Memory0 views
    Compare vs Mcp โ†’
  • D
    Dailyhotmcp

    ่šๅˆ55+ๅนณๅฐ็ƒญ้—จๆฆœๅ•ๆ•ฐๆฎ็š„AIๅทฅๅ…ท๏ผŒๆ”ฏๆŒๅพฎๅšใ€็ŸฅไนŽใ€B็ซ™ใ€GitHub็ญ‰ๅนณๅฐใ€‚้€‚็”จไบŽLLM/RAGๅœบๆ™ฏใ€‚

    ๐Ÿง  Knowledge & Memory0 views
    Compare vs Dailyhotmcp โ†’

Frequently Asked Questions about SmartMemory

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "smartmemory": { "command": "npx", "args": ["-y", "SmartMemory"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSmartMemory AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/smartmemory?style=directory)](https://allmcps.com/mcp/smartmemory)
HTML Embed
<a href="https://allmcps.com/mcp/smartmemory"><img src="https://allmcps.com/api/badge/smartmemory?style=directory" alt="SmartMemory on AllMCPs" /></a>

Technical Specs & Signals

Category๐Ÿง Knowledge & Memory
More technical detailsExpand โ–พ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
24Quality signal: Emerging ยท 24/100How this signal is calculated โ–พ
Server availabilityNot measured

Not scored for repo-hosted servers โ€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools9/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data โ€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

โ˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server โ†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge โ€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in ๐Ÿง  Knowledge & Memory โ†’Best MCP servers for Memory & Knowledge โ†’Alternatives to SmartMemory โ†’Install in Claude DesktopInstall in CursorInstall in VS Code