mcpaccess-auth0-express vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcpaccess-auth0-express by hivetrail-ai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 30 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | — | TypeScript |
| Last commit | 9 mo ago | this month |
mcpaccess-auth0-express · Summary
Auth0 authentication middleware for Express-based MCP servers with JWT validation and role-based access control.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcpaccess-auth0-express · Use cases
- Securing enterprise MCP servers with Auth0 integration
- Implementing role-based access control for different MCP tools
- Protecting sensitive resources and prompts in production MCP environments
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
mcpaccess-auth0-express · Install
npm i @hivetrail/mcpaccess-auth0-expressConfigure the middleware with your Auth0 settings:
import { createMcpAccessMiddleware } from "@hivetrail/mcpaccess-auth0-express";
const mcpAccessConfig = {
serverId: "mcp",
mcpPath: "/mcp",
jwtOptions: {
issuerBaseURL: process.env.AUTH0_ISSUER_URL,
audience: process.env.AUTH0_AUDIENCE
},
};
const mcpAuthMiddleware = createMcpAccessMiddleware(mcpAccessConfig);
// Use in Express app
app.use(mcpAuthMiddleware);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"]
}
}
}