MCP Catalogs
Home

bw-modeling-mcp vs everything

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

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

bw-modeling-mcp · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.