MCP Catalogs
Home

prism-coder vs filesystem

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

prism-coder
by dcostenco
filesystem
by modelcontextprotocol
Stars★ 133★ 85,748
30d uses
Score4977
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

prism-coder · Summary

MCP server providing persistent memory, semantic search, and local LLM for AI agents.

filesystem · Summary

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

prism-coder · Use cases

  • Persistent memory for AI assistants that remember user context across sessions
  • Offline AI applications requiring zero cloud dependency and privacy
  • Collaborative multi-agent systems with shared knowledge base and role-based access

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

prism-coder · Install

Install Prism Coder using npm:

# Install globally
npm install -g prism-mcp-server

# Or use npx (no install)
npx prism-mcp-server

Add to Claude Desktop / Cursor config:

{
  "mcpServers": {
    "prism": {
      "command": "npx",
      "args": ["-y", "prism-mcp-server"]
    }
  }
}

Download local models with Ollama:

ollama pull dcostenco/prism-coder:1b7   # 2.2 GB
ollama pull dcostenco/prism-coder:8b    # 4.7 GB
ollama pull dcostenco/prism-coder:14b   # 8.4 GB
ollama pull dcostenco/prism-coder:32b   # 19 GB

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.

Comparison generated from public README + GitHub signals. Last updated automatically.