Skip to main content
Glama

Server Details

Time MCP server via HTTP

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcpcentral-io/mcp-time
GitHub Stars
2
Server Listing
MCP Time Server

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updates
    • Changedconvert_time7 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • changedInput schema / properties / sourceTimezone / description
        Previous value: -"The source IANA timezone name (e.g., \"Asia/Shanghai\")."New value: +"Source IANA timezone name (e.g., \"Asia/Shanghai\")"
      • changedInput schema / properties / targetTimezone / description
        Previous value: -"The target IANA timezone name (e.g., \"Europe/London\")."New value: +"Target IANA timezone name (e.g., \"Europe/London\")"
      • changedInput schema / properties / time / description
        Previous value: -"The time to convert. e.g., \"2025-03-23 12:30:00\"."New value: +"The time to convert (e.g., \"2025-03-23 12:30:00\")"
      • changedInput schema / required
        Previous value: -[
        -  "sourceTimezone",
        -  "targetTimezone",
        -  "time"
        -]New value: +[
        +  "time",
        +  "sourceTimezone",
        +  "targetTimezone"
        +]
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "convertedTime": {
        +      "type": "string"
        +    },
        +    "hourDifference": {
        +      "type": "number"
        +    }
        +  },
        +  "required": [
        +    "convertedTime",
        +    "hourDifference"
        +  ],
        +  "type": "object"
        +}
    • Changedcurrent_time6 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • removedInput schema / properties / format / default
        Removed value: -"YYYY-MM-DD HH:mm:ss"
      • changedInput schema / properties / format / description
        Previous value: -"The format for the returned time string."New value: +"Format for the returned time string (default YYYY-MM-DD HH:mm:ss)"
      • changedInput schema / properties / timezone / description
        Previous value: -"The IANA timezone name (e.g., \"America/New_York\"). Defaults to the server's guessed timezone."New value: +"IANA timezone name (e.g., \"America/New_York\"). Defaults to the server's guessed timezone"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "localTime": {
        +      "type": "string"
        +    },
        +    "timezone": {
        +      "type": "string"
        +    },
        +    "utcTime": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "utcTime",
        +    "localTime",
        +    "timezone"
        +  ],
        +  "type": "object"
        +}
    • Changeddays_in_month4 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • changedInput schema / properties / date / description
        Previous value: -"The date to check. Format: YYYY-MM-DD"New value: +"The date to check (format: YYYY-MM-DD). Defaults to current date"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "days": {
        +      "type": "integer"
        +    }
        +  },
        +  "required": [
        +    "days"
        +  ],
        +  "type": "object"
        +}
    • Changedget_timestamp4 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • changedInput schema / properties / time / description
        Previous value: -"The time to convert. Format: YYYY-MM-DD HH:mm:ss"New value: +"The time to convert (format: YYYY-MM-DD HH:mm:ss). Defaults to current time"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "timestamp": {
        +      "type": "number"
        +    }
        +  },
        +  "required": [
        +    "timestamp"
        +  ],
        +  "type": "object"
        +}
    • Changedget_week_year4 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • changedInput schema / properties / date / description
        Previous value: -"The date to check. e.g., \"2025-03-23\""New value: +"The date to check (e.g., \"2025-03-23\"). Defaults to current date"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "isoWeek": {
        +      "type": "integer"
        +    },
        +    "week": {
        +      "type": "integer"
        +    }
        +  },
        +  "required": [
        +    "week",
        +    "isoWeek"
        +  ],
        +  "type": "object"
        +}
    • Changedrelative_time4 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • changedInput schema / properties / time / description
        Previous value: -"The time to compare. Format: YYYY-MM-DD HH:mm:ss"New value: +"The time to compare (format: YYYY-MM-DD HH:mm:ss)"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "relativeTime": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "relativeTime"
        +  ],
        +  "type": "object"
        +}
  2. 6 tool updates
    • First observedconvert_time
    • First observedcurrent_time
    • First observeddays_in_month
    • First observedget_timestamp
    • First observedget_week_year
    • First observedrelative_time

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: convert_time handles timezone conversion, current_time provides current time, days_in_month gives calendar information, get_timestamp converts to Unix time, get_week_year provides week numbering, and relative_time calculates time differences. An agent can easily distinguish between these operations.

Naming Consistency4/5

The naming follows a consistent verb_noun pattern throughout (convert_time, current_time, days_in_month, get_timestamp, get_week_year, relative_time), with all tools using snake_case. The minor deviation is that 'relative_time' uses an adjective rather than a verb, but this is still readable and maintains overall consistency.

Tool Count5/5

With 6 tools, this is well-scoped for a time-related server. Each tool earns its place by covering distinct aspects of time operations (conversion, current time, calendar info, timestamping, week numbering, and relative calculations), avoiding both bloat and thin functionality.

Completeness4/5

The toolset covers core time operations comprehensively, including conversion, current time retrieval, calendar details, timestamping, week info, and relative time. A minor gap is the lack of date arithmetic (e.g., add/subtract days) or time formatting tools, but agents can work around this with existing tools.