time vs gram
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | gram by speakeasy-api | |
|---|---|---|
| Stars | ★ 85,748 | ★ 233 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
gram · Summary
Gram is a platform for creating, curating, and hosting MCP servers with TypeScript SDK and OpenAPI support.
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
gram · Use cases
- Host one or more remote MCP servers at a custom domain like mcp.{your-company}.com
- Power in-application chat by exposing context from internal APIs through tools
- Manage and secure MCP servers for an entire organization through a unified control plane
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"]
}
}
}gram · Install
Install the Gram CLI:
curl -fsSL https://go.getgram.ai/cli.sh | bashCreate a new Gram function:
npm create @gram-ai/function@latest
cd my_function
npm run build
npm run pushTo use in Claude Desktop, add to config.json:
{
"mcpServers": {
"gram": {
"command": "npx",
"args": ["@gram-ai/function"]
}
}
}