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

GLM-5-Turbo Shows Low Tool Call Error Rate in User Testing
The z-ai/glm-5-turbo model demonstrates a 0.57% average tool call error rate in testing, significantly lower than GLM-5's ~3% rate. A user reported successfully using it with a CLI tool to write a 97,000-word fantasy novel with minimal issues.

PaperclipAI: Open-source orchestration for zero-human companies
PaperclipAI is an open-source orchestration framework designed for fully automated companies. The project gained 14,000 GitHub stars in its first week of existence.

Claude Code at Scale: How Agentic Search Avoids RAG Failure Modes in Large Codebases
Claude Code uses agentic file-system traversal instead of embedding-based RAG, eliminating stale index issues. The article details five extension points (CLAUDE.md, hooks, skills, plugins, MCP) and the harness-as-model philosophy for multi-million-line repos.

Agent Architect: Free Tool Generates Complete Workspace Files for AI Agents
Agent Architect is a free interactive tool that walks users through 40+ questions about their AI agent, then compiles everything into a formatted prompt to generate seven production-grade workspace files: SOUL.md, IDENTITY.md, AGENTS.md, OPERATIONS.md, TOOLS.md, MEMORY.md, and HEARTBEAT.md.