cf-time-mcp

No description

GitHub Stars

1

User Rating

Not Rated

Favorites

0

Views

92

Forks

1

Issues

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"
      ]
    }
  }
}