Connect DailySand to AI tools that support the Model Context Protocol. Server version 1.4.0.
MCP (Model Context Protocol) is an open standard that allows AI assistants — Claude, Cursor, and others — to call external tools directly. Instead of pasting content into a chat window, the AI can query DailySand live and pull the current digest into context automatically.
Once configured, you can ask your AI assistant: “What's happening in AI and critical minerals today?” and it will fetch the actual DailySand digest in real time.
get_latest_digestReturns today's full digest with sections, byTheNumbers, sources (keyData, tags), watchlist, thesis, and causal chains.
get_digest_by_dateReturns a past digest by date (YYYY-MM-DD) with byTheNumbers, sources, watchlist, thesis, and causal chains.
list_recent_digestsReturns recent digest titles and dates (metadata only). Default limit 7, max 30.
get_watchlist_aggregateRolls up watchlist themes, recurring causal chains, top key figures, and story threads across recent digests (default 30 days, max 60). For themes and catalysts to monitor — not investment advice.
get_latest_weekly_insightReturns the latest Weekly Insight blog post — long-form synthesis across the past seven daily digests, with markdown content, source digest links, and week range.
DailySand supports two credential schemes. API keys (v1) are production-ready today; OAuth2 (v2) is available in beta when Clerk is configured on the server.
API key (v1) — recommended
Pass your key in the Authorization header:
Authorization: Bearer ds_live_...
Subscribe or manage keys at /developers.
OAuth2 (v2) — beta
MCP clients can discover auth requirements via server metadata:
OAuth tokens map to the same subscription tiers as API keys. A Clerk account with an active Developer or Pro subscription is required.
When API monetization guardrails are enabled, anonymous access is rate-limited to protect infrastructure. Paid tools unlock cross-digest rollups and weekly synthesis — the highest-value data for agent workflows.
| Tier | Tools / endpoints | Limits |
|---|---|---|
| Anonymous | get_latest_digest, get_digest_by_date, list_recent_digests | 5 req/min, 50 req/day per IP |
| Developer / Pro | All tools including get_watchlist_aggregate and get_latest_weekly_insight | Higher limits via API key or OAuth2 |
Developer API keys and pricing: dailysand.com/developers
Add the following to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"dailysand": {
"url": "https://dailysand.com/api/mcp",
"transport": "http",
"headers": {
"Authorization": "Bearer ds_live_YOUR_API_KEY"
}
}
}
}After saving, restart Claude Desktop. DailySand will appear as an available tool.
The MCP server is also accessible as a standard REST JSON API for any HTTP client:
MCP endpoint (JSON-RPC 2.0 over HTTP):
https://dailysand.com/api/mcp