World Monitor Unveils Open Model Context Protocol Server and CLI for AI Agents
World Monitor has exposed a public Model Context Protocol server alongside a CLI and SDKs in Python, Go, and Ruby. Developers can connect AI agents directly to 500+ curated real-time intelligence feeds covering infrastructure, market, and geopolitical metrics.
Impact: Medium
Why it matters
Agentic IDEs like Claude Code and Cursor can query structured live context endpoints via standard MCP protocol definitions without extra custom scraping logic.
TL;DR
- 01Provides a live Model Context Protocol endpoint for streaming global telemetry to agents.
- 02Includes zero-dependency SDKs for Python, Go, and Ruby alongside an official CLI.
- 03Open-source core under AGPL-3.0 with support for local offline LLMs via Ollama.
Key facts
- License
- AGPL-3.0-only
- MCP Server Endpoint
- https://worldmonitor.app/mcp
- Feeds Aggregated
- 500+ feeds across 15 categories
Model Context Protocol Server Integration
The MCP endpoint operates at https://worldmonitor.app/mcp over streamable HTTP. Tool discovery is public via tools/list, while tool execution requires an API key header (X-WorldMonitor-Key).
SDKs and CLI Usage
Agents and scripts can interact with World Monitor telemetry using zero-dependency SDKs or the CLI:
- CLI: Run
npx worldmonitor toolsto inspect tools without installation. - SDKs: Official packages available via Python (
worldmonitor-sdk), Ruby (worldmonitor), and Go (github.com/koala73/worldmonitor/sdk/go). - Local Execution: Supports local LLM processing via Ollama.
Try it in 2 minutes
# List all available Model Context Protocol tools without an API key
npx worldmonitor tools
# Run local web development server
git clone https://github.com/koala73/worldmonitor.git
cd worldmonitor
npm install
npm run devbash
✓ When to use
- Equipping AI agents with real-time news, financial, aviation, and infrastructure contextual tools via MCP.
✕ When NOT to use
- Applications with strict proprietary copyleft restrictions that prohibit AGPL-3.0 licensed code components.
What to do today
- Test tool availability by running `npx worldmonitor tools` in your terminal.
- Add `https://worldmonitor.app/mcp` to your Claude Code or Cursor MCP server config.
Sources