How to give Claude live, real-time data.
Claude's training data has a cutoff. Point it at one remote MCP URL and it can call 94 keyless tools for data that happened after that cutoff - today's weather, this week's CVEs, the current stable version of a package.
The call
No MCP client handy? Hit the same data over the keyless batch endpoint. This catches Claude's stale answer ("Python 3.12") against the live version and grabs current London weather - every result is Ed25519-signed and provenance-stamped:
curl -s -X POST https://dynamicfeed.ai/v1/batch \
-H "Content-Type: application/json" \
-d '{"calls":[
{"tool":"reality_check","args":{"claim":"the latest stable Python is 3.12"}},
{"tool":"software_version","args":{"product":"python"}},
{"tool":"current_weather","args":{"city":"London"}}
]}'
Sample response
{
"mcpServers": {
"dynamic-feed": {
"type": "http",
"url": "https://dynamicfeed.ai/mcp"
}
}
}
Why live data
MCP (Model Context Protocol) lets Claude call tools at runtime instead of guessing from its training data. Drop the remote URL above into your Claude Desktop config (or add it as a connector in Claude Code / the API), restart, and 94 tools appear - weather, CVEs, LLM pricing, software versions, outages, satellites and more. The endpoint is keyless and uses Streamable HTTP, so there is no token to manage. Every datapoint comes back with provenance (source, observed-at, freshness) and an Ed25519 signature. Be precise about what that signature means: it establishes integrity and attribution under the published key, so altered bytes fail verification. It does not independently prove time, truth, accuracy, or safety. Claude still reasons over the data; the signature lets you and your agent verify the report has not been changed.
Use it for
- Add live data to Claude Desktop or Claude Code with one URL and no key
- Stop Claude answering from a stale training cutoff using reality_check and software_version
- Ground a Claude answer in a citeable, signed source instead of a guess
- Give a Claude-powered agent hazard, outage and CVE awareness at runtime
FAQ
Do I need an API key to connect Claude?
No. The remote MCP URL at https://dynamicfeed.ai/mcp is keyless and free for fair use. There is no token to paste - just add the URL to your client config and restart.
How do I add it to Claude Desktop?
Open your claude_desktop_config.json, add the mcpServers block shown above with the https://dynamicfeed.ai/mcp URL, save, and restart Claude Desktop. The 94 tools then show up in the tool picker. Claude Code and the API connect to the same URL as a connector.
Does the signature mean the data is correct?
No. The Ed25519 signature establishes integrity and attribution under the published key, so altered bytes fail verification. It does not independently prove time, truth, accuracy, or safety. Use it to verify the report, then let Claude reason over it.