timestamp
Generate and format timestamps in ISO, Unix, or readable formats to synchronize events or log data within the MCP Server Boilerplate framework.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | iso |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "iso",
"enum": [
"iso",
"unix",
"readable"
],
"type": "string"
}
},
"type": "object"
}