time vs agentidentityprotocol
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | agentidentityprotocol by openagentidentityprotocol | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | — |
| Last commit | this month | 2 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
agentidentityprotocol · Summary
AIP provides zero-trust security layer for MCP agents with policy enforcement, human approval, and audit logging.
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
agentidentityprotocol · Use cases
- Securing MCP agents from prompt injection attacks by blocking unauthorized tool calls
- Enforcing compliance requirements through audit trails for AI agent actions
- Implementing granular access control for AI agents operating on critical systems
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"]
}
}
}agentidentityprotocol · Install
Installation
The project is currently under development with a Go implementation available. To set up AIP as a proxy for your MCP server:
- Clone the repository:
git clone https://github.com/openagentidentityprotocol/agent-identity-protocol.git - Follow the Go implementation documentation at https://github.com/openagentidentityprotocol/aip-go
- Configure AIP as a sidecar proxy between your MCP client and server
For Claude Desktop integration (once available):
{
"mcpServers": {
"aip-proxy": {
"command": "go",
"args": ["run", "."],
"env": {
"AIP_REGISTRY_URL": "https://registry.aip.io"
}
}
}
}