MCP Catalogs
Home

lastsaas vs everything

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

lastsaas
by jonradoff
everything
by modelcontextprotocol
Stars★ 97★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit2 mo agothis month

lastsaas · Summary

Go-based SaaS boilerplate with MCP server for AI-powered admin operations.

everything · Summary

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

lastsaas · Use cases

  • AI-powered admin dashboard for SaaS operations and monitoring
  • Automated troubleshooting and error investigation using AI agents
  • Natural language queries for system health, revenue metrics, and API usage

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

lastsaas · Install

To integrate the MCP server with Claude Desktop:

  1. Start the LastSaaS application
  2. Add to Claude Desktop config.json:
{
  "mcpServers": {
    "lastsaas": {
      "command": "go",
      "args": ["run", "."],
      "env": {}
    }
  }
}
  1. Restart Claude Desktop
  2. The MCP server will be available with 32 admin tools

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.