MCP Catalogs
Home

mcp-github-project-manager vs everything

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

mcp-github-project-manager
by kunwarVivek
everything
by modelcontextprotocol
Stars★ 88★ 85,748
30d uses
Score4677
Official
Categories
GitHubDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit4 mo agothis month

mcp-github-project-manager · Summary

An MCP server for GitHub project management with AI-powered task generation and requirements traceability.

everything · Summary

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

mcp-github-project-manager · Use cases

  • AI-assisted project planning with automatic PRD generation from project ideas
  • Automated task breakdown with complexity analysis and effort estimation
  • Requirements traceability management with bidirectional links and impact analysis

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-github-project-manager · Install

Installation

Option 1: Install from npm (recommended)

npm install -g mcp-github-project-manager

Option 2: Install from source

git clone https://github.com/kunwarVivek/mcp-github-project-manager.git
cd mcp-github-project-mannpm install
npm run build

Set up environment variables

cp .env.example .env
# Edit .env with your GitHub token and details

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "github-project-manager": {
      "command": "mcp-github-project-manager",
      "args": []
    }
  }
}

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.