- Home
- MCP servers
- Tokyo WBGT
Tokyo WBGT
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"yukit7s-cc-get-wbgt": {
"command": "node",
"args": [
"path/to/tokyo-wbgt-mcp-server/build/index.js"
]
}
}
}You run a specialized MCP server that provides Tokyo WBGT (Wet-Bulb Globe Temperature) forecasts and observed data. It sources official data to deliver forecast values for multiple Tokyo locations alongside real-time measurements, helping you build applications and dashboards that respond to heat risk and related guidance.
How to use
Set up an MCP client to connect to the Tokyo WBGT MCP Server. You will either run the server locally or connect through an MCP gateway that exposes the server via the standard MCP interface. The server exposes forecast data for designated Tokyo locations and real-time measurements from a single observed site.
Useful capabilities you can rely on include fetching WBGT forecasts for a specific location, retrieving all Tokyo WBGT forecast locations at once, and obtaining real-time WBGT observations from the available Tokyo observation point. Use these capabilities to power alerts, dashboards, or integration with other heat-risk tools.
How to install
# Install dependencies
npm install
# Build TypeScript sources
npm run build
Additional configuration and usage notes
MCP client configuration allows you to point to the local or remote server. If you are running locally, you typically reference the built entry point for the server. The client configuration below shows how to register the server under the key tokyo-wbgt and execute the server using Node.
{
"mcpServers": {
"tokyo-wbgt": {
"command": "node",
"args": ["path/to/tokyo-wbgt-mcp-server/build/index.js"]
}
}
}
Data sources
Forecast data comes from the Ministry of the Environment’s heat illness prevention information site, while real-time observations come from the Ministry of the Environment’s observed data site.
WBGT overview and danger levels
WBGT combines temperature, humidity, and radiant heat to guide heat-stress risk. Levels help you decide when to hydrate, rest, or pause outdoor activities.
Data availability and notes
- Forecast data updates hourly. A single Tokyo observation point provides real-time measurements. Real-time data timestamps reflect when measurements are available.
Development and project structure
The server is implemented in TypeScript and built to run with Node.js. It relies on MCP tooling to expose endpoints for forecast and real-time data.
Troubleshooting
If data is unavailable during maintenance windows, retry after a short interval. Ensure dependencies are installed and the build output exists at the expected path before starting the server.
License
MIT License.
Available tools
get_tokyo_wbgt_forecast
Fetches WBGT forecast values for a specified Tokyo observation location.
get_all_tokyo_locations
Retrieves forecast values for all WBGT observation locations within Tokyo.
get_tokyo_realtime_data
Obtains real-time WBGT measurements from Tokyo observation points for a given month.