mcp-products-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-products-server by biobshub | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | DatabaseAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | 10 mo ago | this 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
mcp-products-server · Install
Installation
Prerequisites
- .NET 9.0 SDK
- Azure Cosmos DB account
- Azure OpenAI service (optional)
Setup
- Clone the repository:
git clone <repository-url>
cd mcp-products-server- Configure environment:
Create appsettings.Development.json with your Azure endpoints and configuration
- Run with .NET Aspire (recommended):
cd mcp-products-server.AppHost
dotnet runOr run components separately:
# Terminal 1: MCP Server
cd mcp-products-server
dotnet run
# Terminal 2: Blazor Client
cd mcp-products-client
dotnet runClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"products-server": {
"command": "dotnet",
"args": ["run"],
"cwd": "/path/to/mcp-products-server"
}
}
}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