Watchtower / Agent gatewayRemote HTTP MCP / reviewed data catalog
Reviewed Watchtower data for agent workflows

Give your agent a route to evidence.

Create a Watchtower MCP token in the Advanced view, then connect a compatible remote HTTP client to Watchtower's reviewed global-risk data catalog.

Pro, Team, Enterprise or other API-capable access required for hosted MCP.
12Tools in public MCP metadata
132Reviewed read-only routes
2Public and professional route tiers
0Mutation tools in the reviewed route catalog

Public metadata and catalog verified 2026-08-28. Tool and route counts may change.

Connection path

From account to first tool call.

The full token is shown only when it is created. Store it with your client's secret controls and never place it in prompts, screenshots, URLs or repositories.

01 / Create

Open Advanced.

Sign in to Watchtower, open the Advanced view, then find AI Agent MCP - Hosted Agent Access and create a token.

02 / Configure

Set endpoint and header.

Use https://watchtower.technology/agent/mcp with Authorization: Bearer wt_mcp_....

03 / Discover

List before reading.

Call watchtower.list_data_routes, select a reviewed path, then use paginated reads and preserve source context.

Illustrative client config

One endpoint. One bearer header.

Configuration fields vary by client and version. Use a client that supports remote HTTP MCP and custom bearer authorization headers.

MCP server configurationReplace placeholder locally
{
  "mcpServers": {
    "watchtower": {
      "type": "http",
      "url": "https://watchtower.technology/agent/mcp",
      "headers": {
        "Authorization": "Bearer wt_mcp_[YOUR_TOKEN]"
      }
    }
  }
}
Observed response samples

See the data shape before you connect.

These are compact excerpts from responses generated on 2026-08-28. They demonstrate fields and semantics, not fixed values or current-event claims.

Example 01 / paginated route

USGS earthquake records

Discover a route, request a bounded page, then continue from nextOffset.

// MCP tool call
{
  "name": "watchtower.read_data_route",
  "arguments": {
    "path": "/agent/api/earthquakes",
    "limit": 24
  }
}

// observed response excerpt
{
  "dataset": {
    "id": "earthquakes",
    "category": "weather-hazards"
  },
  "records": [
    { "path": "/metadata/title",
      "value": "USGS Magnitude 4.5+ Earthquakes, Past Week" },
    { "path": "/metadata/count", "value": 124 },
    { "path": "/features/0/properties/mag", "value": 5 },
    { "path": "/features/0/properties/status", "value": "reviewed" }
  ],
  "page": {
    "returned": 24,
    "nextOffset": 24,
    "hasMore": true
  }
}
Generated 2026-08-28T11:55:27.931Z / observed sample / values change
Example 02 / normalized intelligence

Global bond evidence

A higher-level tool returns methodology, source state, confidence and evidence coverage with the assessment.

// MCP tool call
{
  "name": "watchtower.get_global_bond_intel",
  "arguments": {}
}

// observed response excerpt
{
  "schemaVersion": "global-bond-intel-v3.0.0",
  "generatedAt": "2026-08-28T11:49:08.810Z",
  "cached": true,
  "stale": false,
  "degraded": false,
  "overview": {
    "globalBondStressScore": 25.24,
    "scoreStatus": "calculated",
    "level": "normal",
    "confidence": 0.90,
    "evidenceCoveragePct": 100,
    "sourceOk": 20,
    "sourceTotal": 21
  },
  "methodology": {
    "caveat": "Missing evidence remains null..."
  }
}
Observed payload / coverage belongs to this payload only / scores and state change
Public MCP metadata

Twelve tools, from discovery to analysis.

Availability depends on entitlement and tool scope. Deep Analyst is optional and separately bounded.

watchtower.list_data_routes

Discover every reviewed data route available to the key holder.

watchtower.read_data_route

Read approved datasets as paginated JSON Pointer/value records.

watchtower.search

Search the canonical corpus with provenance and freshness context.

watchtower.get_data_points

Retrieve normalized Watchtower data points and source packs.

watchtower.get_osint_observations

Read normalized public-source observations.

watchtower.get_cross_domain_alerts

Inspect cross-domain evidence assessments and conditions.

watchtower.get_country_risk

Retrieve country-risk rows, summaries and source-state context.

watchtower.get_crypto_intel

Retrieve the Crypto Intelligence payload.

watchtower.get_global_bond_intel

Retrieve fixed-income evidence across sovereign and credit surfaces.

watchtower.get_military_air

Inspect military, air and early-warning anomaly signals.

watchtower.get_reports

Read the archived Deep Analyst report manifest when entitled.

watchtower.deep_analysis

Run a bounded evidence-backed report when separately entitled.

Access contract

A read-only route catalog.

The 132-route reviewed catalog excludes mutation capabilities. Optional, separately entitled Deep Analyst report generation sits outside that route catalog and has separate bounds. Read-only does not make every source complete, current or continuously available.

Available

Evidence for research.

+Reviewed public and entitlement-appropriate professional routes
+Catalog discovery, bounded query parameters and paginated reading
+Source, timestamp, provenance, geography and source-state fields where supplied
+Search, normalized intelligence and entitled report workflows
Excluded

Private and operational systems.

-Private users, workspaces, imports and owner-scoped data
-Authentication, credentials, raw tokens, billing and administration
-Secret-bearing operations, arbitrary caller URLs and cache-busting controls
-Create, update, delete or other mutation capabilities
Eligible access

Hosted MCP starts with an API-capable plan.

Pro is currently USD 29 monthly or USD 250 yearly through recurring PayPal checkout. Team, Enterprise or other approved API-capable access can also enable MCP. Confirm account eligibility before implementation.

$29 / $250USD monthly / yearlyCompare access

Ready to connect?

Open Watchtower, enter the Advanced view and create your MCP token. Then point your compatible client at the endpoint shown above.