MCP Catalogs
Home

First-MCP-Server-Project vs everything

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

First-MCP-Server-Project
by burakarslan0110
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3277
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last commit5 mo agothis month

First-MCP-Server-Project · Summary

A .NET 10 MCP server providing math and string processing tools for AI assistants.

everything · Summary

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

First-MCP-Server-Project · Use cases

  • Enable AI assistants to perform mathematical calculations without leaving the chat interface
  • Provide text processing capabilities to AI for content analysis
  • Demonstrate MCP server implementation in .NET for developers to build upon

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

First-MCP-Server-Project · Install

Installation

  1. Install [.NET 10.0 SDK](https://dotnet.microsoft.com/download/dotnet/10.0)
  2. Clone the repository: git clone https://github.com/burakarslan0110/First-MCP-Server-Project.git
  3. Navigate to the project directory: cd First-MCP-Server-Project
  4. Restore dependencies: dotnet restore
  5. Build the project: dotnet build

Usage

  1. Run the server: dotnet run --project First-MCP-Server-Project
  2. Configure your AI assistant (e.g., Claude Desktop) to connect to this MCP server:
{
  "mcpServers": {
    "first-mcp-server": {
      "command": "dotnet",
      "args": ["run", "--project", "PATH_TO_PROJECT"]
    }
  }
}

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.