time vs mcp-graphql-forge
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-graphql-forge by toolprint | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-graphql-forge · Summary
MCP server that converts GraphQL APIs into MCP tools with automatic parameter validation and field selection caching.
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
mcp-graphql-forge · Use cases
- Integrating GraphQL APIs like GitHub, Strapi, or Shopify into AI workflows
- Converting internal GraphQL services to MCP tools for AI assistants
- Automating API interactions without manual query construction
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"]
}
}
}mcp-graphql-forge · Install
Installation
Recommended Method (Smithery)
npx @smithery/cli install @toolprint/mcp-graphql-forge --client claudeAlternative Methods
# npm install
npm install -g @toolprint/mcp-graphql-forgeClaude Desktop Configuration
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-graphql-forge": {
"command": "npx",
"args": [
"-y",
"@toolprint/mcp-graphql-forge"
],
"env": {
"GRAPHQL_ENDPOINT": "https://your-api.com/graphql",
"GRAPHQL_AUTH_HEADER": "Bearer YOUR_TOKEN"
}
}
}
}