ATSPI-MCP-Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ATSPI-MCP-Server by C-Loftus | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 29 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | 9 mo ago | this month |
ATSPI-MCP-Server · Summary
An MCP server that exposes Linux accessibility tree information through ATSPI
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ATSPI-MCP-Server · Use cases
- Enabling AI assistants to understand and interact with Linux GUI applications
- Providing context-aware assistance to users with visual impairments
- Automating UI testing by inspecting element states on Linux systems
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
ATSPI-MCP-Server · Install
Installation
- Clone the repository:
git clone https://github.com/C-Loftus/ATSPI-MCP-Server.git - Navigate to the project directory:
cd ATSPI-MCP-Server - Build the project:
cargo build --release - Configure your MCP client (e.g., Claude Desktop)
Claude Desktop Configuration
Add the following to your Claude Desktop config.json:
{
"mcpServers": {
"atspi": {
"command": "path/to/ATSPI-MCP-Server/target/release/atspi-mcp",
"args": []
}
}
}Note: Ensure apparmor is not blocking ATSPI communication by launching outside sandboxed environments.
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