timeline-mcp
Related Servers
Alternatives to timeline-mcp
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityBmaintenanceMCP server providing a persistent, temporal memory brain for AI assistants, enabling cross-session recall of facts with relationships and temporal context.3-
- AlicenseNot gradedqualityBmaintenanceA local MCP server that provides a sovereign memory substrate for LLMs, enabling capture, recall, explanation, and anticipation of conversation turns with bi-temporal events and a strict read-only query surface.Apache 2.0
- FlicenseNot gradedqualityDmaintenanceA MCP server that provides persistent memory for AI assistants, storing personal information, relationships, and observations to enable personalized and contextual conversations.4-
- FlicenseNot gradedqualityBmaintenanceEnables long-horizon conversational memory compaction and episodic anchor extraction for AI agents, providing deterministic memory management through a zero-dependency MCP server.7-
- FlicenseNot gradedqualityCmaintenanceA remote MCP server that gives AI assistants a shared memory, enabling structured handoffs, journaling, and notes for seamless continuation across sessions.-
- FlicenseNot gradedqualityCmaintenanceA personal memory MCP server that stores and retrieves conversation memories, enabling AI agents to recall past discussions, promises, and preferences using natural language.-
TDQS
Scored across 5 tools
Most tools are clearly separated by their role in the pipeline: extraction, state building, summarization, and querying. There is minor overlap between build_timeline_state and upsert_message_into_timeline since both aggregate events and recompute derived fields, but the incremental vs bulk distinction is clear enough.
The naming mostly follows a verb_noun pattern: extract_timeline_events, build_timeline_state, summarize_timeline_context, upsert_message_into_timeline. The exception is days_since_event, which is not a verb-led action name and breaks the pattern slightly.
Five tools is well-scoped for a focused timeline-management server. Each tool covers a distinct stage of the workflow without redundancy or excessive granularity.
The core lifecycle is covered: extraction, state construction, incremental updates, summarization, and queries. Minor gaps include lack of an explicit reset/clear operation or a way to remove individual events, but these are not critical for the intended use case.