time vs solscan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | solscan-mcp by Valennmg | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 32 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceblockchainDeveloper Tools |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
solscan-mcp · Summary
An MCP server for querying Solana blockchain data using natural language through the Solscan API.
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
- Quickly retrieving transaction details using natural language queries
- Checking Solana account balances without writing code
- Building applications that provide blockchain data access through conversational interfaces
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
- Clone the repository:
``bash git clone https://github.com/Valennmg/solscan-mcp cd solscan-mcp ``
- Build the project (requires Rust):
``bash cargo build --release ``
- Run the server:
``bash ./target/release/solscan-mcp ``
- For Claude Desktop, add to
config.json:
```json { "mcpServers": { "solscan": { "command": "path/to/solscan-mcp", "args": [] } } }