MCP Catalogs
Home

TextEdit-MCP vs everything

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

TextEdit-MCP
by M-Pineapple
everything
by modelcontextprotocol
Stars★ 3★ 85,748
30d uses
Score3977
Official
Categories
ProductivityAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageSwiftTypeScript
Last commit1 mo agothis month

TextEdit-MCP · Summary

A Swift-based MCP server for creating RTF documents with native macOS TextEdit formatting features.

everything · Summary

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

TextEdit-MCP · Use cases

  • Creating formatted meeting notes with highlights and action items
  • Generating technical documentation with tables and code formatting
  • Producing business reports with consistent styling and templates

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

TextEdit-MCP · Install

Installation

Prerequisites
  • macOS (required for NSAttributedString and RTF generation)
  • Swift 5.0 or later
  • Claude Desktop
Quick Install
  1. Clone the repository:
git clone https://github.com/M-Pineapple/TextEdit-MCP.git
cd TextEdit-MCP
  1. Run the installer:
./install.sh
  1. Restart Claude Desktop

The installer will:

  • Build the Swift project
  • Install the MCP server binary
  • Update your Claude Desktop configuration
  • Create a backup of your existing config
Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "textedit": {
      "command": "path/to/TextEdit-MCP",
      "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.