time vs solscan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | solscan-mcp by wowinter13 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 40 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceDeveloper Toolsblockchain |
| Language | TypeScript | Rust |
| Last commit | this month | 9 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
solscan-mcp · Summary
A Rust MCP server for querying Solana blockchain data through Solscan API using natural language.
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
solscan-mcp · Use cases
- Analyzing suspected addresses for criminal activity by combining with other MCPs
- Investigating wallet patterns including MEV, dusting, poisoning, and sandwich attacks
- Querying token information and transaction details on the Solana blockchain
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"]
}
}
}solscan-mcp · Install
Installation
Prerequisites:
- Rust toolchain (install via [rustup](https://rustup.rs/))
- Solscan Pro API key (obtain from [Solscan APIs](https://solscan.io/apis))
cargo install solscan-mcpAdd to your Claude Desktop configuration:
{
"mcpServers": {
"solscan-mcp": {
"command": "/Users/$username/.cargo/bin/solscan-mcp",
"args": [],
"env": {
"SOLSCAN_API_KEY": "your_solscan_api_key"
}
}
}
}