Timepoint MCP
Provides structured access to a temporal knowledge platform for searching historical events and browsing a causal graph of over 2,000 years of history. It enables users to generate rich historical scenes, interact with period-appropriate characters, and run complex temporal simulations.
README
timepoint-mcp
MCP server for the Timepoint AI temporal knowledge platform.
Live at: mcp.timepointai.com
What is this?
A hosted Model Context Protocol server that gives AI agents structured access to the Timepoint ecosystem:
- Search & browse a causal graph of 196+ historical moments spanning 2000+ years
- Generate timepoints — rich historical scenes with narratives, characters, dialog, and AI images (coming soon)
- Navigate time — step forward/backward from any moment to discover what came before and after (coming soon)
- Chat with historical characters — in-context conversations with period-appropriate personalities (coming soon)
- Run simulations — multi-entity temporal scenarios via the SNAG engine (coming soon)
Works with Claude Desktop, Cursor, Windsurf, VS Code Copilot, the Anthropic Agent SDK, and any MCP-compatible client.
Get an API key
Visit timepointai.com or reach out on X @timepointai to request access.
Clockchain read tools (search, browse, moment detail) work without authentication at 30 req/min. Generation and simulation tools require an API key and credits.
Quick start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"timepoint": {
"url": "https://mcp.timepointai.com/mcp",
"headers": {
"X-API-Key": "tp_mcp_..."
}
}
}
}
Cursor / Windsurf
Add to .cursor/mcp.json or equivalent:
{
"mcpServers": {
"timepoint": {
"url": "https://mcp.timepointai.com/mcp",
"headers": {
"X-API-Key": "tp_mcp_..."
}
}
}
}
Anthropic Agent SDK
from claude_agent_sdk import Agent
from claude_agent_sdk.mcp import MCPServerRemote
agent = Agent(
model="claude-sonnet-4-6",
mcp_servers=[
MCPServerRemote(
url="https://mcp.timepointai.com/mcp",
headers={"X-API-Key": "tp_mcp_..."},
)
],
)
result = agent.run("What happened in Rome in 44 BC?")
Local development
git clone https://github.com/timepointai/timepoint-mcp.git
cd timepoint-mcp
pip install -e .
# stdio transport (for Claude Desktop local)
python -m app.server --transport stdio
# HTTP transport (for remote testing)
python -m app.server --transport http --port 8000
Available tools
Phase 1 (live now) — Clockchain read tools
| Tool | Auth | Description |
|---|---|---|
search_moments |
Optional | Search the temporal causal graph for historical events |
get_moment |
Optional | Get full detail for a historical moment by its canonical path |
browse_graph |
Optional | Browse the graph hierarchy — year, month, day, location, event |
get_connections |
Optional | Get causal/thematic connections: what caused this, what it caused |
today_in_history |
Key | Events that happened on today's date across all eras |
random_moment |
Key | Random historical moment for serendipitous discovery |
graph_stats |
Optional | Node/edge counts, date range, source distribution |
Phase 2 (coming soon) — Generation tools
| Tool | Credits | Description |
|---|---|---|
generate_timepoint |
5-10 | Generate a historical timepoint with scene, characters, dialog, image |
temporal_navigate |
2 | Step forward/backward in time from an existing timepoint |
chat_with_character |
1 | Converse with a historical character in context |
get_timepoint |
0 | Retrieve a previously generated timepoint |
list_my_timepoints |
0 | List your generated timepoints |
get_credit_balance |
0 | Check credits and usage |
Phase 3 (planned) — Simulation tools
| Tool | Credits | Description |
|---|---|---|
run_simulation |
10 | Run a SNAG temporal simulation |
get_simulation_result |
0 | Get simulation results |
Pricing
| Tier | Price | Monthly Credits | Rate Limit |
|---|---|---|---|
| Anonymous | Free | — | 30 req/min (read-only) |
| Free | Free | 5 signup credits | 60 req/min |
| Explorer | $7.99/mo | 100 | 60 req/min |
| Creator | $19.99/mo | 300 | 300 req/min |
| Studio | $49.99/mo | 1,000 | 1,000 req/min |
Credit packs also available as one-time purchases.
HTTP endpoints
In addition to the MCP protocol at /mcp, the server exposes:
| Method | Path | Description |
|---|---|---|
| GET | / |
Landing page (JSON for agents, redirect for browsers) |
| GET | /health |
Service health check |
| GET | /account/status |
Auth status and tier info |
| POST | /admin/create-key |
Create API key (requires admin key) |
Architecture
MCP Clients (Claude Desktop, Cursor, agents, SDKs)
|
| Streamable HTTP + X-API-Key
v
timepoint-mcp (mcp.timepointai.com)
FastMCP + Starlette + asyncpg
|
-----+------+----------+
| | |
v v v
Clockchain Flash Billing
(graph) (writer) (Stripe/IAP)
The MCP server is a thin coordination layer. It authenticates requests via API keys, resolves user tiers via Billing, checks credit balance via Flash, routes tool calls to the appropriate backend, and enforces per-tier rate limits. It never stores credits or subscriptions — Flash and Billing own those.
Tech stack
- Python 3.11+ with FastMCP, Starlette, httpx, asyncpg
- Transport: Streamable HTTP (production), stdio (local dev)
- Database: PostgreSQL (API keys + usage logs)
- Deployment: Railway (Docker)
Environment variables
# Downstream services
FLASH_URL=https://api.timepointai.com
FLASH_SERVICE_KEY=...
FLASH_ADMIN_KEY=...
CLOCKCHAIN_URL=...
CLOCKCHAIN_SERVICE_KEY=...
BILLING_URL=...
BILLING_SERVICE_KEY=...
# Database
DATABASE_URL=postgresql://...
# Server
PORT=8000
License
Proprietary. Copyright 2026 Timepoint AI.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。