time vs framesmith
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | framesmith by RobDavenport | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsMedia |
| Language | TypeScript | Rust |
| Last commit | this month | 3 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
framesmith · Summary
Fighting game character editor with MCP server for LLM-assisted workflows
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
framesmith · Use cases
- LLM-assisted fighting game character creation and balancing
- Automated character data validation and optimization
- Integration with fighting game development pipelines via MCP
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"]
}
}
}framesmith · Install
Install Framesmith:
npm install
npm run tauri devStart the MCP server:
cd src-tauri
cargo run --bin mcp -- --characters-dir ../charactersFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"framesmith": {
"command": "cargo",
"args": ["run", "--bin", "mcp", "--", "--characters-dir", "../characters"],
"cwd": "${your_framesmith_project}/src-tauri"
}
}
}