Skip to main content

WhatsHot MCP

whatshot-mcp is the single open-source MCP server for WhatsHot. It connects to either a local WhatsHot Backend or the hosted WhatsHot Backend through the same versioned HTTP contract.

This repository contains the Contract v1 models and the MCP implementation. The MCP server only talks to a versioned WhatsHot Backend over HTTP; it never opens DuckDB or PostgreSQL itself.

The project is licensed under the MIT License and owned by alisen39.

Requirements

  • Python 3.12 or newer
  • One standard installation; no optional dependency extras are currently defined

The supported installation form is python -m pip install whatshot-mcp. No [all] or other extras are defined.

For local development:

python -m pip install -e .
pytest
python -m build

Run

Copy config.example.toml, then start the primary Streamable HTTP transport:

whatshot-mcp serve --config ./config.toml

Clients connect to http://127.0.0.1:6691/mcp by default. Streamable HTTP is the only supported transport.

The HTTP process also exposes a minimal public GET /health probe and a deployment-level GET /ready probe. When static inbound authentication is enabled, /ready requires the same Bearer token while /health remains public.

Operational commands:

whatshot-mcp config validate --config ./config.toml
whatshot-mcp backend check --config ./config.toml
whatshot-mcp version

backend check validates the capabilities envelope, Contract v1 and boardKeyVersion. Its exit codes are 0 success, 2 invalid configuration, 3 Backend unavailable, 4 invalid/error Contract response and 5 incompatible board-key version.

The Backend API key may be stored as backend.api_key in the uncommitted local configuration file, or resolved from backend.api_key_env; the environment value takes precedence. The key is sent only as an Authorization: Bearer request header and is never a tool argument.

There are two independent authentication boundaries:

  • MCP client → MCP Server: Streamable HTTP may use the configured inbound static Bearer token.
  • MCP Server → Backend /api/v1: Core data endpoints are public, while Cloud data endpoints require the configured Backend Bearer token and enforce their declared scopes. The shared OpenAPI contract marks Bearer as optional and records the normative choice in x-whatshot-deployment-auth.

An inbound MCP token is never reused as a Backend token, and the Backend API key is never exposed as a tool argument. Supported environment overrides include:

WHATSHOT_MCP_SERVER_BIND
WHATSHOT_MCP_SERVER_PORT
WHATSHOT_MCP_SERVER_PATH
WHATSHOT_MCP_SERVER_AUTH_MODE
WHATSHOT_MCP_SERVER_TOKEN_ENV
WHATSHOT_MCP_SERVER_TOKEN
WHATSHOT_MCP_BACKEND_URL
WHATSHOT_MCP_BACKEND_API_KEY
WHATSHOT_MCP_BACKEND_TIMEOUT_SECONDS
WHATSHOT_MCP_BACKEND_CAPABILITIES_TTL_SECONDS

The first fixed Universal Tool Catalog contains:

  • whatshot_get_capabilities
  • whatshot_list_sources
  • whatshot_get_source_schema
  • whatshot_get_current
  • whatshot_get_current_batch
  • whatshot_query_history
  • whatshot_search_history
  • whatshot_get_trend_series
  • whatshot_get_data_coverage
  • whatshot_analyze_hot_event
  • whatshot_analyze_newsflash_coverage

When the startup capabilities snapshot reports navigation=true, the same open MCP package additionally registers these Cloud tools:

  • whatshot_list_navigation — cursor-paged category/site discovery
  • whatshot_fetch_category_hotlists — bounded current boards for one category

Both tools require the Backend navigation capability and data:read scope. They are selected from capabilities, not a Backend-name check. A request with freshness=live is still authorized by the Cloud Backend, which additionally requires its live:fetch scope.

The analysis tools scan history/search pages through the same Backend Contract. scanBudget limits evidence examined while evidenceLimit separately limits evidence returned. Responses always report analysisComplete, scannedCount, and coverage; lifecycle times are explicitly marked approximate when the scan budget stops pagination. Analysis does not create or update a research run.

At startup the MCP validates and freezes one deployment-level capabilities snapshot. It registers only tools whose required Backend capability is enabled; changing Backend features requires restarting the MCP. User permissions never change tools/list: they are enforced by the Backend on each call, so every user of one deployment sees the same publicly cacheable catalog.

Contract v1

The source of truth is the Pydantic model package at src/whatshot_mcp/contracts/v1/.

  • All public JSON fields serialize as camelCase.
  • All models reject undeclared fields.
  • All timestamps require an explicit timezone.
  • Successful Backend responses use { "data": ..., "meta": ... }.
  • Failed Backend responses use the stable error envelope defined by ErrorEnvelope.
  • core-read and history-read are distinct capability profiles. A Backend may offer current data while history storage is disabled.
  • boardKey is generated by the documented canonical algorithm and must be identical in local and hosted Backends.

The contracts/ directory describes how OpenAPI, JSON Schema, and fixtures are published without creating a second hand-maintained contract definition.

Configuration

config.example.toml records the runtime configuration boundary. A real Backend key may be kept in the ignored local copy or supplied by environment variable. Unauthenticated Streamable HTTP is restricted to loopback. A non-loopback bind requires server.auth.mode = "static_token" and a non-empty token resolved from server.auth.token_env. The incoming token is used only at the HTTP boundary; it is never a tool argument or log field. oauth is reserved and currently fails closed.

License

MIT License. See LICENSE.

Release

PyPI publishing uses GitHub Actions Trusted Publishing; the repository does not store a long-lived PyPI token. After validation and a SemVer version update, push the matching v<version> tag. The dedicated publish.yml workflow builds the wheel and source distribution, then publishes them from the protected pypi environment.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

whatshot_mcp-0.2.0.tar.gz (55.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

whatshot_mcp-0.2.0-py3-none-any.whl (40.1 kB view details)

Uploaded Python 3

File details

Details for the file whatshot_mcp-0.2.0.tar.gz.

File metadata

  • Download URL: whatshot_mcp-0.2.0.tar.gz
  • Upload date:
  • Size: 55.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whatshot_mcp-0.2.0.tar.gz
Algorithm Hash digest
SHA256 3136ca27a32ef6fabddf174a05c7af9a8137033f1966c3769720b23e7d5ce6bf
MD5 3f198f5f3e45b13a6651172bc0d00317
BLAKE2b-256 352c9d61c4707ccc1e42200c494e3025e30a8fe7b0785fbf1a475eed9e5bb372

See more details on using hashes here.

Provenance

The following attestation bundles were made for whatshot_mcp-0.2.0.tar.gz:

Publisher: publish.yml on alisen39/whatshot-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file whatshot_mcp-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: whatshot_mcp-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 40.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for whatshot_mcp-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 35d2dc6ad49419c8c887be46af6a0d4b01ac93e45563dc9a650e46455f86fe95
MD5 cfc63cb1c9809f008822fdf21b57d72b
BLAKE2b-256 b42f79a7207448270a74b1c4b3d495b8db34f14d8a204f351af1c160e2ea5fc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for whatshot_mcp-0.2.0-py3-none-any.whl:

Publisher: publish.yml on alisen39/whatshot-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.3.1

2 files

0.3.0

2 files

This release

0.2.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page