Connect your AI agent to the NHT BI data warehouse. Read-only access to dimensional tables, financial aggregates, and trading data — with DLP-filtered responses.
Sign in with your NHT Identity account to get a personal access token.
Paste this into your MCP client as a Bearer token. This token does not expire.
This MCP server exposes the NHT BI data warehouse (PostgreSQL) to AI agents over the Model Context Protocol. All access is read-only; row values are screened by a two-layer DLP pipeline (catalogue-driven column redaction plus runtime NER) before they leave the server.
list_tables — paginated table catalogue (members of confirmed partitioned families are hidden; query the base table with a partition-key filter)list_columns — columns, types, and DLP flags for a single tablequery — row-level reads with a Lucene-style filter syntaxaggregate — group/aggregate/period summaries with HAVINGmulti_query — batch query / aggregate calls with bounded concurrencyPoint your client at the endpoint below and supply the token from the “Get Token”
panel as a Bearer token.
https://dwh.mcp.nht.io/mcp
curl -X POST https://dwh.mcp.nht.io/mcp \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
The token returned by the “Get Token” flow is an offline refresh token — long-lived and revocable from Keycloak. Treat it like a password.