File size: 23,550 Bytes
ec8acdf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <!-- WebMCP β€” in-page agent tools on the homepage (worldmonitor.app).
         Registers a small tool set via navigator.modelContext.registerTool so
         browser-based AI agents (Chrome/Edge WebMCP, agent-readiness scanners)
         that land on the apex page can act on and discover World Monitor
         WITHOUT executing the dashboard SPA β€” the SPA registers its own richer
         WebMCP tools separately (src/services/webmcp.ts), but the apex serves
         this static welcome page, not the SPA. Spec:
         https://webmachinelearning.github.io/webmcp/. Registers synchronously at
         parse time when the provider is already present (native WebMCP), and
         retries once on DOMContentLoaded/load for a provider installed later
         (e.g. a scanner polyfill); the `registered` guard keeps it idempotent, and
         it is a no-op in browsers without navigator.modelContext. The MCP server is
         the remote HTTP (Streamable HTTP) transport at https://worldmonitor.app/mcp
         β€” getWorldMonitorMcpEndpoint hands agents that endpoint. The nonce is added
         by Vite (html.cspNonce) at build time, so this inline script needs no CSP
         script-src hash (deploy-config.test). -->
    <script>
      (function () {
        function text(t, isError) {
          return { content: [{ type: 'text', text: t }], isError: !!isError };
        }
        var MONITORS = {
          world: 'https://www.worldmonitor.app/dashboard',
          tech: 'https://tech.worldmonitor.app/dashboard',
          finance: 'https://finance.worldmonitor.app/dashboard',
          commodity: 'https://commodity.worldmonitor.app/dashboard',
          energy: 'https://energy.worldmonitor.app/dashboard',
          happy: 'https://happy.worldmonitor.app/dashboard'
        };
        var tools = [
          {
            name: 'launchWorldMonitor',
            description: 'Open the live World Monitor intelligence dashboard in this tab. Optionally choose a specialized monitor variant (world, tech, finance, commodity, energy, happy). Navigates to the real-time map β€” conflicts, markets, shipping chokepoints, flights and cyber on one surface.',
            inputSchema: {
              type: 'object',
              properties: {
                monitor: {
                  type: 'string',
                  enum: ['world', 'tech', 'finance', 'commodity', 'energy', 'happy'],
                  description: 'Which monitor to open. Defaults to "world".'
                }
              },
              additionalProperties: false
            },
            execute: function (args) {
              var key = args && typeof args.monitor === 'string' ? args.monitor.toLowerCase() : 'world';
              // Own-property lookup only β€” self-validate here rather than trust the
              // host to enforce inputSchema, so an off-enum key (incl. prototype
              // keys like "constructor"/"__proto__") can never resolve into
              // window.location. Unknown keys fall back to the world map.
              var url = Object.prototype.hasOwnProperty.call(MONITORS, key) ? MONITORS[key] : MONITORS.world;
              if (url === MONITORS.world) key = 'world';
              try {
                window.location.assign(url);
              } catch (e) {
                return Promise.resolve(text('Could not open the dashboard: ' + ((e && e.message) || e), true));
              }
              return Promise.resolve(text('Opening the ' + key + ' monitor: ' + url));
            }
          },
          {
            name: 'getWorldMonitorMcpEndpoint',
            description: "Return connection details for World Monitor's remote MCP server so an agent can pull live geopolitical, market, maritime, aviation, cyber and economic intelligence directly. Includes the Streamable HTTP endpoint, the discovery server card, and supported auth modes.",
            inputSchema: { type: 'object', properties: {}, additionalProperties: false },
            execute: function () {
              // No tool count here β€” the live server card is the source of truth
              // (a hardcoded number would drift). Agents read the catalog from it.
              return Promise.resolve(text(JSON.stringify({
                endpoint: 'https://worldmonitor.app/mcp',
                transport: 'streamableHttp',
                serverCard: 'https://worldmonitor.app/.well-known/mcp/server-card.json',
                auth: ['OAuth 2.1 bearer (Authorization: Bearer <token>)', 'API key (X-WorldMonitor-Key: wm_...)'],
                publicDiscovery: 'initialize, tools/list and notifications/initialized are servable without credentials'
              }, null, 2)));
            }
          }
        ];
        var registered = false;
        function register() {
          if (registered) return;
          var provider = typeof navigator !== 'undefined' ? navigator.modelContext : null;
          if (!provider) return;
          try {
            if (typeof provider.registerTool === 'function') {
              for (var i = 0; i < tools.length; i++) provider.registerTool(tools[i]);
              registered = true;
            } else if (typeof provider.provideContext === 'function') {
              provider.provideContext({ tools: tools });
              registered = true;
            }
          } catch (e) {
            /* Progressive enhancement β€” never break page load for an optional API. */
          }
        }
        register();
        // Retry once for a provider installed after this head script runs (e.g. a
        // scanner polyfill injected around DOMContentLoaded). The `registered`
        // guard keeps it idempotent β€” a present-at-parse provider never re-registers.
        if (!registered && typeof document !== 'undefined' && document.addEventListener) {
          document.addEventListener('DOMContentLoaded', register, { once: true });
          if (typeof window !== 'undefined' && window.addEventListener) {
            window.addEventListener('load', register, { once: true });
          }
        }
      })();
    </script>
    <!-- Umami (#4931): the welcome landing had no analytics β€” pageviews plus
         data-umami-event CTA clicks (see src/welcome/*) land in the same Umami
         site as the dashboard so acquisition β†’ dashboard β†’ checkout joins.
         data-domains must list www (exact-hostname match; apex 301s to www).
         Static nonce satisfies the strict-dynamic CSP (deploy-config CSP). -->
    <script async defer src="https://abacus.worldmonitor.app/script.js" data-website-id="e8800335-c853-46a8-8497-c993ed2f58bc" data-domains="worldmonitor.app,www.worldmonitor.app,happy.worldmonitor.app" nonce="wm-static-bootstrap"></script>
    <title>World Monitor β€” Free Real-Time Global Intelligence Dashboard</title>
    <meta name="description" content="By the time it's news, you already knew. Conflicts, shipping chokepoints, military flights, markets and cyber on one free live world map, with AI analysis. No signup." />
    <meta name="keywords" content="global intelligence dashboard, real-time world map, geopolitical monitoring, conflict tracking, OSINT dashboard, market monitoring, shipping chokepoints, satellite tracking, situational awareness, free intelligence platform, world news dashboard, AI news analysis" />
    <link rel="canonical" href="https://www.worldmonitor.app/" />
    <link rel="alternate" hreflang="x-default" href="https://www.worldmonitor.app/" />
    <link rel="alternate" hreflang="en" href="https://www.worldmonitor.app/" />
    <meta property="og:title" content="World Monitor β€” By the time it's news, you already knew." />
    <meta property="og:description" content="The world's raw signals β€” ships, jets, sirens, cables, markets β€” on one free live intelligence map, with AI that flags when they converge. Free, no signup." />
    <meta property="og:type" content="website" />
    <meta property="og:url" content="https://www.worldmonitor.app/" />
    <meta property="og:image" content="https://www.worldmonitor.app/favico/og-image.png" />
    <meta property="og:image:width" content="1200" />
    <meta property="og:image:height" content="630" />
    <meta property="og:image:alt" content="World Monitor β€” free real-time global intelligence dashboard with conflict, market, shipping and satellite layers" />
    <meta property="og:site_name" content="World Monitor" />
    <meta property="og:locale" content="en_US" />
    <meta name="twitter:card" content="summary_large_image" />
    <meta name="twitter:site" content="@worldmonitorai" />
    <meta name="twitter:creator" content="@worldmonitorai" />
    <meta name="twitter:title" content="World Monitor β€” By the time it's news, you already knew." />
    <meta name="twitter:description" content="500+ live feeds, conflict tracking, markets, chokepoints, satellites and AI analysis in one free real-time dashboard. No signup." />
    <link rel="icon" type="image/png" href="https://www.worldmonitor.app/favico/favicon-32x32.png" />
    <link rel="alternate" type="application/json" href="https://www.worldmonitor.app/?mode=agent" title="World Monitor agent-mode view (machine-readable)" />
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "SoftwareApplication",
      "name": "World Monitor",
      "applicationCategory": "FinanceApplication",
      "operatingSystem": "Web, Windows, macOS, Linux, Android TV",
      "url": "https://worldmonitor.app",
      "description": "Free real-time global intelligence dashboard. 500+ news feeds, conflict tracking, market data, shipping chokepoints, satellite passes and cyber signals fused into one live map of the world, with AI analysis layered on top.",
      "sameAs": [
        "https://github.com/koala73/worldmonitor",
        "https://www.npmjs.com/package/worldmonitor",
        "https://x.com/worldmonitorai",
        "https://discord.gg/re63kWKxaz",
        "https://www.wired.com/story/world-monitor-elie-habib/"
      ],
      "author": {
        "@type": "Person",
        "name": "Elie Habib",
        "url": "https://x.com/eliehabib",
        "jobTitle": "CEO",
        "sameAs": [
          "https://x.com/eliehabib",
          "https://github.com/koala73",
          "https://www.linkedin.com/in/elie-habib-7047b931",
          "https://www.wikidata.org/wiki/Q121365724",
          "https://www.crunchbase.com/person/elie-habib-2"
        ]
      },
      "screenshot": "https://www.worldmonitor.app/favico/og-image.png",
      "datePublished": "2026-01",
      "offers": [
        {
          "@type": "Offer",
          "name": "Free",
          "price": "0",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.worldmonitor.app/pro#pricing",
          "description": "Core dashboard panels, Global news feed, Earthquake & weather alerts, Basic map view, 3 dashboard tabs"
        },
        {
          "@type": "Offer",
          "name": "Pro Monthly",
          "price": "39.99",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.worldmonitor.app/pro#pricing",
          "description": "Everything in Free, AI stock analysis & backtesting, Daily market briefs, Military & geopolitical tracking, Custom widget builder, 10 custom dashboards (vs 3), MCP + SDK access for Claude Desktop & other AI clients (50 calls/day), Priority data refresh, Personal license",
          "priceSpecification": {
            "@type": "UnitPriceSpecification",
            "price": "39.99",
            "priceCurrency": "USD",
            "billingDuration": "P1M"
          }
        },
        {
          "@type": "Offer",
          "name": "Pro Annual",
          "price": "359.99",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.worldmonitor.app/pro#pricing",
          "description": "",
          "priceSpecification": {
            "@type": "UnitPriceSpecification",
            "price": "359.99",
            "priceCurrency": "USD",
            "billingDuration": "P1Y"
          }
        }
      ],
      "featureList": "Real-time global map with 56 data layers, 500+ curated news feeds, Country Instability Index across 196 countries, live conflict tracking, market quotes and sector heatmaps, 13 shipping chokepoints with vessel transit intelligence, real-time satellite tracking, GPS jamming zones, submarine cable map, AI datacenter map, daily AI brief, Scenario Engine, custom monitors and alerts, 59-tool MCP server, desktop apps, Android TV app, 25 language support"
    }
    </script>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "WebPage",
      "@id": "https://www.worldmonitor.app/",
      "url": "https://www.worldmonitor.app/",
      "name": "World Monitor β€” By the time it's news, you already knew.",
      "speakable": {
        "@type": "SpeakableSpecification",
        "cssSelector": ["h1", "h1 + p"]
      }
    }
    </script>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "BreadcrumbList",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "World Monitor", "item": "https://www.worldmonitor.app/" }
      ]
    }
    </script>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "FAQPage",
      "mainEntity": [
        {
          "@type": "Question",
          "name": "Is World Monitor really free?",
          "acceptedAnswer": { "@type": "Answer", "text": "Yes. The full live map β€” every layer, 500+ feeds, country briefs, breaking alerts, all six monitors β€” is free with no signup and no trial clock. Pro pays for the feeds: it adds WM Analyst, the scenario engine, Route Explorer, scheduled digests and MCP access for AI clients. No ads, and no account means there's no user data to sell." }
        },
        {
          "@type": "Question",
          "name": "What is a global intelligence dashboard?",
          "acceptedAnswer": { "@type": "Answer", "text": "A single live view that fuses signals most tools keep separate: conflict events, ship and aircraft tracking, shipping chokepoints, satellites, subsea cables, pipelines, markets and cyber threats β€” on one real-time world map, with AI scoring and briefs on top. World Monitor is a free one." }
        },
        {
          "@type": "Question",
          "name": "Where does the data come from?",
          "acceptedAnswer": { "@type": "Answer", "text": "65+ providers, named: ACLED and UCDP for conflict, AISStream for live vessels, OpenSky for aircraft, NASA FIRMS for fires, USGS for earthquakes, IMF, BIS, FRED and Finnhub for markets and macro β€” plus 500+ curated news feeds. Every panel cites its sources and timestamps inline." }
        },
        {
          "@type": "Question",
          "name": "Can I watch chokepoints like Hormuz or Bab el-Mandeb in real time?",
          "acceptedAnswer": { "@type": "Answer", "text": "Yes. 13 chokepoints are tracked with live AIS vessel counts, week-over-week transit change and disruption scoring β€” and density anomalies are flagged against each strait's rolling baseline." }
        },
        {
          "@type": "Question",
          "name": "How is this different from a conflict map like Liveuamap?",
          "acceptedAnswer": { "@type": "Answer", "text": "Conflict is one layer out of 56. World Monitor fuses conflicts with shipping, military flights, infrastructure, markets and cyber β€” then AI scores the convergence: instability indices, hotspot escalation, corroborated breaking alerts and daily briefs." }
        },
        {
          "@type": "Question",
          "name": "Why should I trust an alert?",
          "acceptedAnswer": { "@type": "Answer", "text": "A breaking banner fires only when independent origin types corroborate β€” news classification, keyword velocity, hotspot escalation, military surges, official sirens β€” deduplicated and rate-limited. Fewer alerts, real ones." }
        },
        {
          "@type": "Question",
          "name": "Can AI agents like Claude or GPT use it?",
          "acceptedAnswer": { "@type": "Answer", "text": "Yes. World Monitor ships a 59-tool MCP server, so Claude, GPT or any MCP-compatible agent can query live risk scores, chokepoint status, conflicts, markets and briefs β€” with JMESPath projection so agents fetch exactly what they need." }
        },
        {
          "@type": "Question",
          "name": "Do I need an account?",
          "acceptedAnswer": { "@type": "Answer", "text": "No. The dashboard works instantly with no signup. An account only matters when you upgrade to Pro or want settings synced across devices." }
        },
        {
          "@type": "Question",
          "name": "Is it open source?",
          "acceptedAnswer": { "@type": "Answer", "text": "Yes β€” open source under AGPL-3.0 on GitHub: read the code, self-host it, or build on it. Native desktop apps for Windows, macOS and Linux are available too, plus an Android TV app for wall displays." }
        },
        {
          "@type": "Question",
          "name": "Why isn't World Monitor Palantir?",
          "acceptedAnswer": { "@type": "Answer", "text": "Palantir makes an institution's own data operational inside that institution. World Monitor starts from the other end: it assembles, normalizes, correlates, and monitors public-world data, then publishes that intelligence layer through a free dashboard and open-source code. Different job, different product." }
        },
        {
          "@type": "Question",
          "name": "Which World Monitor license do I need?",
          "acceptedAnswer": { "@type": "Answer", "text": "Choose based on who will use the output. Pro's Personal license is for one person using World Monitor for their own research and decisions. Pro Business lets one licensed user use it for company or client work, internal tools, and reports. API Starter covers API use inside one organization, with no customer redistribution. API Business lets that organization embed World Monitor data in products and services for its customers. Enterprise covers custom seats, white-labeling, and deployments. These subscription licenses are separate from the AGPL/MIT source-code licenses. Full terms: worldmonitor.app/docs/terms." }
        }
      ]
    }
    </script>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "ItemList",
      "name": "World Monitor use cases",
      "description": "AI-search extractable use cases for World Monitor's real-time correlation dashboard.",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "url": "https://www.worldmonitor.app/#moments",
          "name": "Geopolitical market intelligence",
          "description": "Correlate country risk, sanctions, conflict events, chokepoints, macro indicators, FX, equities, crypto, energy and safe-haven assets in one live view."
        },
        {
          "@type": "ListItem",
          "position": 2,
          "url": "https://commodity.worldmonitor.app/dashboard",
          "name": "Commodity disruption monitoring",
          "description": "Track AIS vessel movement, ports, pipelines, LNG, refineries, waterways, chokepoints, weather, fires, outages, conflicts, oil, gas, gold, metals, grains and commodity-linked currencies together."
        },
        {
          "@type": "ListItem",
          "position": 3,
          "url": "https://tech.worldmonitor.app/dashboard",
          "name": "AI infrastructure risk",
          "description": "Map AI datacenters beside grids, pipelines, LNG, nuclear facilities, cloud regions, power markets, outages, heat, fire and weather layers."
        },
        {
          "@type": "ListItem",
          "position": 4,
          "url": "https://www.worldmonitor.app/#depth",
          "name": "Infrastructure cascade analysis",
          "description": "Analyze subsea cables, landing stations, ports, pipelines, chokepoints, internet outages, BGP anomalies, trade corridors, country resilience and redundancy in one surface."
        }
      ]
    }
    </script>
  </head>
  <body>
    <div id="root"></div>
    <noscript>
      <div style="max-width:800px;margin:0 auto;padding:40px 20px;font-family:system-ui,sans-serif;color:#e5e5e5;background:#0a0a0a;">
        <h2>World Monitor β€” By the time it's news, you already knew.</h2>
        <p>Headlines are the lag. World Monitor is a free, real-time global intelligence dashboard that streams the world's raw signals β€” ships, jets, sirens, cables, markets β€” onto one live map, with AI that flags when they converge into something that matters. Free, no signup required.</p>
        <p><a href="https://www.worldmonitor.app/dashboard" style="color:#4ade80;">Launch the dashboard</a> or explore the specialized variants: <a href="https://tech.worldmonitor.app/dashboard" style="color:#4ade80;">Tech Monitor</a>, <a href="https://finance.worldmonitor.app/dashboard" style="color:#4ade80;">Finance Monitor</a>, <a href="https://commodity.worldmonitor.app/dashboard" style="color:#4ade80;">Commodity Monitor</a>, <a href="https://energy.worldmonitor.app/dashboard" style="color:#4ade80;">Energy Monitor</a>, and <a href="https://happy.worldmonitor.app/dashboard" style="color:#4ade80;">Happy Monitor</a>.</p>
        <p>Data comes from <a href="https://acleddata.com/" style="color:#4ade80;" rel="noopener noreferrer">ACLED</a>, <a href="https://ucdp.uu.se/" style="color:#4ade80;" rel="noopener noreferrer">UCDP</a>, <a href="https://firms.modaps.eosdis.nasa.gov/" style="color:#4ade80;" rel="noopener noreferrer">NASA FIRMS</a>, <a href="https://finnhub.io/" style="color:#4ade80;" rel="noopener noreferrer">Finnhub</a>, <a href="https://fred.stlouisfed.org/" style="color:#4ade80;" rel="noopener noreferrer">FRED</a>, <a href="https://aisstream.io/" style="color:#4ade80;" rel="noopener noreferrer">AISStream</a>, <a href="https://opensky-network.org/" style="color:#4ade80;" rel="noopener noreferrer">OpenSky</a>, and 60+ other live providers. Full source on <a href="https://github.com/koala73/worldmonitor" style="color:#4ade80;" rel="noopener noreferrer">GitHub (AGPL-3.0)</a>.</p>
        <h3>What you can do</h3>
        <ul>
          <li><strong>See</strong> β€” 56 map layers across a dual 3D-globe/WebGL map: conflicts, vessels, flights, satellites, pipelines, submarine cables, AI datacenters.</li>
          <li><strong>Understand</strong> β€” daily AI brief, Country Instability Index across 196 countries, cross-source correlation, Scenario Engine.</li>
          <li><strong>Act</strong> β€” custom monitors and alerts, Route Explorer, 59-tool MCP server and API for Claude, GPT and custom agents.</li>
        </ul>
        <p>Upgrade to <a href="https://www.worldmonitor.app/pro" style="color:#4ade80;">World Monitor Pro</a> for the AI analyst, Scenario Engine and Route Explorer, personal intelligence digest, custom widget builder, and MCP/API access β€” from $39.99/month.</p>
      </div>
    </noscript>
    <script type="module" src="/src/welcome-main.tsx"></script>
  </body>
</html>