Temporal-MCP: Wall-Clock Awareness for LLMs with OAuth Support

Temporal-MCP is a new MCP server designed to solve a common failure mode in agent stacks: the model has no awareness of how much time has passed between turns. It greets you with 'good morning' at 11 PM, picks up a conversation three weeks later as if no time has passed, or computes 'today's data' based on stale context. Two tools are provided: temporal_tick and temporal_peek. They return elapsed time since the last turn, day-rollover detection, and a fresh-thread flag, both as a human-readable header and as JSON.
Setup and Usage
Local stdio: pip install temporal-mcp (works with Claude Desktop, Cursor, Cline, Zed, Claude Code).
Hosted with OAuth (claude.ai / ChatGPT): visit https://temporal-mcp.dev/connect, click 'Generate OAuth Credentials', and paste into your custom connector. Full OAuth 2.0 with PKCE and refresh tokens. No signup required — the credential pair is the identity. Verified working in claude.ai.
Hosted with raw bearer (any client that supports custom headers): use Authorization: Bearer <any-opaque-string> against https://temporal-mcp.dev/mcp. The token is SHA-256 hashed; the server never sees the plaintext.
Self-host: Cloudflare Workers deploy using the workers/ directory in the repo. The free tier covers ~100k requests/day.
Grok/xAI: https://temporal-mcp.dev/mcp/<string> (verified working in Grok).
Implementation Details
MIT licensed. ~150 lines of stdlib Python on the local side, ~400 lines of TypeScript on the hosted side (engine + OAuth provider), both with tests. Listed in the official MCP Registry. Smithery and Glama submissions are in flight.
The JSON signals day_rollover and delta_sec can be used for context decay and resume detection, among other use cases.
Source: github.com/MirrorEthic/temporal-mcp
📖 Read the full source: r/ClaudeAI
👀 See Also

Building a $6.4k Local LLM Server: TCO Breakdown vs API Costs
A developer shares a detailed total cost of ownership for a 4x MI100 local server running llama.cpp, compared to API equivalents including OpenAI and Z.AI coding plans.

Fingerprint's Free Web Bot Auth Testing Tool for AI Agent Developers
Fingerprint has released a free, public endpoint for testing Web Bot Auth implementations. The tool validates cryptographic signatures on HTTP requests, helping bot and AI agent developers ensure their WBA setup works correctly before hitting production.

context-os: Open-source tool reduces Claude Code token consumption by 27-42%
context-os is a local context optimizer that hooks into Claude Code automatically, compressing tool output before Claude sees it and reducing token consumption by 27-42% depending on content type.

Command Center: AI Coding Env for People Who Care About Quality
Command Center is an agentic coding environment focused on the hard parts of AI-generated code: reviewing, refactoring, and shipping with traditional engineering discipline. Includes walkthroughs, refactoring agents, and snapshot recovery.