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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 2 mo ago | this 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:
- Start the LastSaaS application
- Add to Claude Desktop config.json:
{
"mcpServers": {
"lastsaas": {
"command": "go",
"args": ["run", "."],
"env": {}
}
}
}- Restart Claude Desktop
- 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