MCP Catalogs
Home

mcp-products-server vs filesystem

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

mcp-products-server
by biobshub
filesystem
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3377
Official
Categories
DatabaseAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScript
Last commit10 mo agothis month

mcp-products-server · Summary

A .NET-based MCP server providing product search and marketing summary tools with Cosmos DB integration and a Blazor client UI.

filesystem · Summary

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

mcp-products-server · Use cases

  • E-commerce product discovery and marketing content generation
  • AI-powered product recommendation systems
  • Development and testing of MCP server integrations

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

mcp-products-server · Install

Installation

Prerequisites

  • .NET 9.0 SDK
  • Azure Cosmos DB account
  • Azure OpenAI service (optional)

Setup

  1. Clone the repository:
git clone <repository-url>
cd mcp-products-server
  1. Configure environment:

Create appsettings.Development.json with your Azure endpoints and configuration

  1. Run with .NET Aspire (recommended):
cd mcp-products-server.AppHost
dotnet run

Or run components separately:

# Terminal 1: MCP Server
cd mcp-products-server
dotnet run

# Terminal 2: Blazor Client
cd mcp-products-client
dotnet run

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "products-server": {
      "command": "dotnet",
      "args": ["run"],
      "cwd": "/path/to/mcp-products-server"
    }
  }
}

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.