mcp-streamable-http vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-streamable-http by invariantlabs-ai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 129 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsCommunication | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 12 mo ago | this month |
mcp-streamable-http · Summary
Python and TypeScript MCP server examples implementing Streamable HTTP protocol for cross-language communication.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-streamable-http · Use cases
- Building cross-language MCP server implementations
- Creating HTTP-based MCP transport layer
- Developing weather information MCP services
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-streamable-http · Install
Installation
Python Example
git clone https://github.com/invariantlabs-ai/mcp-streamable-http.git
cd python-example/server
pip install .
python weather.pyTypeScript Example
cd typescript-example/server
npm install && npm run build
node build/index.jsClaude Desktop Integration
Add to Claude Desktop config.json:
"mcpServers": {
"streamable-http": {
"command": "node",
"args": ["/path/to/build/index.js"],
"env": {
"PORT": "8123"
}
}
}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"]
}
}
}