a2a-demos vs time
Side-by-side comparison to help you pick between these two MCP servers.
a2a-demos by capiscio | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | SecurityAI / LLM ToolsDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
a2a-demos · Summary
Demo agents showcasing CapiscIO Agent Guard and MCP Guard with trust badges, identity verification, and tool-level authorization.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
a2a-demos · Use cases
- Securing MCP servers with trust badges and identity verification
- Implementing runtime policy changes for AI agent authorization
- Demonstrating trust infrastructure across different AI frameworks (LangChain, CrewAI, LangGraph)
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
a2a-demos · Install
Installation
Each demo has its own setup process:
- **Enforcement Demo**:
cd enforcement-demo && ./setup.sh - **Policy Demo**:
cd policy-demo && ./setup.sh - **Agent Guard Demos**:
cd multi-agent-demo && ./setup.sh
Make sure you have Python 3.11+ and a CapiscIO account with API key. For integration demos, you'll also need an OpenAI API key.
Claude Desktop Configuration
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"capiscio-guard": {
"command": "python",
"args": ["path/to/a2a-demos/enforcement-demo/server/main.py"]
}
}
}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"]
}
}
}