MCP Catalogs
Home

bw-modeling-mcp vs filesystem

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

bw-modeling-mcp
by dnic-dev
filesystem
by modelcontextprotocol
Stars★ 33★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM ToolsDatabase
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

bw-modeling-mcp · Summary

MCP server for AI-assisted development in SAP BW/4HANA systems with comprehensive modeling tools.

filesystem · Summary

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

bw-modeling-mcp · Use cases

  • AI-assisted BW modeling object creation and modification
  • Automated data flow analysis and dependency mapping
  • Live data querying with dynamic variable and filter handling

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

bw-modeling-mcp · Install

# Install via npm (recommended)
npm install -g bw-modeling-mcp

# Or clone and build
git clone https://github.com/dnic-dev/bw-modeling-mcp.git
cd bw-modeling-mcp
npm install
npm run build

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "bw-modeling-mcp": {
      "command": "node",
      "args": ["/path/to/bw-modeling-mcp/dist/index.js"],
      "env": {
        "BW_URL": "https://your-bw-host:50001",
        "BW_USER": "YOUR_USER",
        "BW_PASSWORD": "YOUR_PASSWORD",
        "BW_CLIENT": "001",
        "BW_LANGUAGE": "EN"
      }
    }
  }
}

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.