everything vs claude-code-emacs
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | claude-code-emacs by yuya373 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 63 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Emacs Lisp |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
claude-code-emacs · Summary
Emacs package providing MCP integration for Claude Code, enabling AI-powered coding sessions with buffer and LSP operations.
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
claude-code-emacs · Use cases
- AI-assisted code refactoring and optimization within Emacs
- Real-time debugging with LSP diagnostic integration
- Automated code generation using project-specific prompts and custom commands
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-everythingclaude-code-emacs · Install
# Install MCP server globally
npm install -g claude-code-mcp-server
# Configure Claude Code to use MCP
claude mcp add-json emacs '{
"type": "stdio",
"command": "claude-code-mcp"
}'
# Add to Emacs init.el
(add-to-list 'load-path "/path/to/claude-code")
(require 'claude-code)
(global-set-key (kbd "C-c c") 'claude-code-transient)