MCP.so
ログイン

MCP Time Server on Cloudflare (Without Auth)

@SzeMeng76

MCP Time Server on Cloudflare (Without Auth) について

概要はまだありません

基本情報

カテゴリ

生産性

ランタイム

node

トランスポート

stdio

公開者

SzeMeng76

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "time": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp-time-server.ajz.workers.dev/sse"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is MCP Time Server on Cloudflare (Without Auth)?

MCP Time Server on Cloudflare (Without Auth) is a remote Model Context Protocol (MCP) server deployed on Cloudflare Workers that provides tools for getting the current time in different timezones and converting time between timezones. It does not require any authentication, making it easy to integrate into MCP clients.

How to use MCP Time Server on Cloudflare (Without Auth)?

Deploy by clicking the "Deploy to Workers" button or using npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. After deployment, you can connect from the Cloudflare AI Playground by entering your server URL, or from Claude Desktop using the mcp-remote proxy with the configuration shown in the README.

Key features of MCP Time Server on Cloudflare (Without Auth)

  • Provides get_current_time and convert_time MCP tools.
  • get_current_time accepts an optional IANA timezone (defaults to UTC).
  • convert_time converts a time in HH:MM format between two timezones.
  • Returns times in 24-hour format with timezone information.
  • Deployed as a remote MCP server without authentication.
  • Accessible via SSE endpoint on Cloudflare Workers.

Use cases of MCP Time Server on Cloudflare (Without Auth)

  • Getting the current time in any IANA timezone from an MCP client.
  • Converting a specific time between two timezones for scheduling.
  • Embedding timezone-aware time retrieval into AI assistant workflows.
  • Providing a lightweight, zero‑auth time service for MCP‑enabled applications.

FAQ from MCP Time Server on Cloudflare (Without Auth)

What is the difference between this server and local time–zone tools?

This server runs remotely on Cloudflare Workers, so no local installation or timezone database is required. It exposes time operations as MCP tools that any MCP client can call.

What are the runtime requirements?

A Cloudflare Workers account to deploy the server. No other dependencies. The server is built with Node.js and uses the cloudflare template.

Where does time data come from?

The server uses the JavaScript Intl.DateTimeFormat and related APIs available in the Workers runtime to compute timezone conversions. No external API is called.

Is authentication required?

No. This MCP server explicitly has no authentication, as indicated by its name.

What transport does the server use?

The server communicates via Server‑Sent Events (SSE) at an endpoint like https://mcp-time-server.<your-account>.workers.dev/sse.

コメント

「生産性」の他のコンテンツ