MCP Catalogs
Home

fusio vs time

Side-by-side comparison to help you pick between these two MCP servers.

fusio
by apioo
time
by modelcontextprotocol
Stars★ 2,088★ 85,748
30d uses
Score5477
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
ProductivityDeveloper ToolsCommunication
LanguagePHPTypeScript
Last committhis monththis month

fusio · Summary

Fusio is a self-hosted API management platform with native MCP support to expose APIs as tools for AI agents.

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

fusio · Use cases

  • Transform legacy databases into REST APIs accessible by AI agents
  • Create and monetize API products with developer portals and SDK generation
  • Build custom backend logic using AI-assisted development for autonomous agents

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

fusio · Install

Docker Installation

services:
  fusio:
    image: fusio/fusio
    restart: always
    environment:
      FUSIO_PROJECT_KEY: "42eec18ffdbffc9fda6110dcc705d6ce"
      FUSIO_CONNECTION: "pdo-mysql://fusio:61ad6c605975@mysql-fusio/fusio"
      FUSIO_BACKEND_USER: "test"
      FUSIO_BACKEND_EMAIL: "demo@fusio-project.org"
      FUSIO_BACKEND_PW: "test1234"
    ports:
      - "8080:80"

  mysql-fusio:
    image: mysql:8.0
    restart: always
    environment:
      MYSQL_RANDOM_ROOT_PASSWORD: "1"
      MYSQL_USER: "fusio"
      MYSQL_PASSWORD: "61ad6c605975"
      MYSQL_DATABASE: "fusio"
    volumes:
      - ./db:/var/lib/mysql
docker compose up -d

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "fusio": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "fusio/fusio"]
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.