MCP Catalogs
Home

filesystem vs nowledge-mem

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
nowledge-mem
by nowledge-co
Stars★ 85,748★ 181
30d uses
Score7745
Official
Categories
File SystemDeveloper ToolsProductivity
Knowledge GraphProductivityAI / LLM Tools
LanguageTypeScript
Last committhis month6 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

nowledge-mem · Summary

A local-first, graph-based memory manager that integrates with AI tools via MCP protocol.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

nowledge-mem · Use cases

  • Centralizing AI conversations across multiple platforms in one searchable location
  • Automatically extracting and organizing insights from AI interactions into a knowledge graph
  • Using MCP integration to capture conversation threads without manual intervention

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

nowledge-mem · Install

Installation

  1. Download and install Nowledge Mem from [https://mem.nowledge.co/](https://mem.nowledge.co/)
  1. Configure MCP in your client (e.g., Claude Desktop):
{
  "mcpServers": {
    "nowledge-mem": {
      "url": "http://localhost:14242/mcp",
      "type": "streamableHttp",
      "headers": {
        "APP": "<MCP Client App Name here>"
      }
    }
  }
}
  1. Alternatively, use the Claude Code Plugin:
claude plugin marketplace add nowledge-co/community
claude plugin install nowledge-mem@nowledge-community
Comparison generated from public README + GitHub signals. Last updated automatically.