add_temporal
Track and record precise timestamps with associated environmental data such as weather, day, and year using the MemoryMesh MCP server. Enhance temporal context in knowledge graphs.
Instructions
Represents a specific point in time and its associated environmental conditions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
temporal | Yes |
Input Schema (JSON Schema)
{
"properties": {
"temporal": {
"additionalProperties": {
"description": "Additional property value",
"type": "string"
},
"properties": {
"day": {
"description": "The current day.",
"type": "string"
},
"time": {
"description": "The specific time.",
"type": "string"
},
"weather": {
"description": "The current weather or environmental conditions.",
"type": "string"
},
"year": {
"description": "The current year or point in the timeline.",
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"required": [
"temporal"
],
"type": "object"
}