langchain-mcp-tools-ts vs time
Side-by-side comparison to help you pick between these two MCP servers.
langchain-mcp-tools-ts by hideya | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
langchain-mcp-tools-ts · Summary
A TypeScript utility to convert MCP server tools into LangChain-compatible tools with schema adjustments for LLM compatibility.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
langchain-mcp-tools-ts · Use cases
- Integrating MCP tools like filesystem, GitHub, or Brave search with LangChain agents
- Creating custom LangChain applications using MCP servers without implementing MCP protocol
- Developing proof-of-concepts for AI applications that need access to external data sources
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
langchain-mcp-tools-ts · Install
Install with npm:
npm i @h1deya/langchain-mcp-toolsExample configuration for Claude Desktop (convert to MCP servers config):
{
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"]
}
}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"]
}
}
}