ATSPI-MCP-Server vs time
Side-by-side comparison to help you pick between these two MCP servers.
ATSPI-MCP-Server by C-Loftus | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 29 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsCommunication |
| 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
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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.
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}