cf-time-mcp

説明なし

GitHubスター

1

ユーザー評価

未評価

お気に入り

0

閲覧数

86

フォーク

1

イシュー

0

README
Time MCP Server

This MCP Server provides an LLM interface for getting the current time from the public World Time API. It was built with the Spring AI MCP project.

Sample

Building the Server
./mvnw clean package
Configuration

You will need to supply a configuration for the server for your MCP Client. Here's what the configuration looks like for claude_desktop_config.json:

{
  "mcpServers": {
    "time-mcp": {
      "command": "java",
      "args": [
        "-Dlogging.file.name=time-mcp.webmvc.log",
        "-jar",
        "/path/to/time-mcp/target/time-mcp-0.0.1-SNAPSHOT.jar",
        "--server.port=8022"
      ]
    }
  }
}