MCP Catalogs
Home

adonis-mcp vs everything

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

adonis-mcp
by 7nohe
everything
by modelcontextprotocol
Stars★ 10★ 85,748
30d uses
Score3577
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

adonis-mcp · Summary

AdonisJS package for building remote MCP servers with Server-Sent Events support.

everything · Summary

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

adonis-mcp · Use cases

  • Building MCP servers within existing AdonisJS applications
  • Creating custom AI tools with backend logic in AdonisJS
  • Exposing database resources through MCP protocol

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

adonis-mcp · Install

node ace add @7nohe/adonis-mcp

After installation, configure your MCP server in config/mcp.ts:

import { defineConfig } from '@7nohe/adonis-mcp'

export default defineConfig({
  ssePath: '/sse',
  messagesPath: '/messages',
  serverOptions: {
    name: 'mymcp',
    version: '0.0.1',
  },
})

For Claude Desktop, add to config.json:

{
  "mcpServers": {
    "mymcp": {
      "url": "http://localhost:3333/sse"
    }
  }
}

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.