home / mcp / mcp tenki server

MCP Tenki Server

Provides a weather MCP service for Japan, enabling weather data access via MCP clients.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "acxelerator-mcp-tenki": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/acxelerator/mcp-tenki.git",
        "mcp-tenki"
      ]
    }
  }
}

You run a weather MCP server for Japan, accessible to MCP clients to fetch up-to-date weather data. It’s lightweight to deploy and can be started with or without cloning the repository, making it easy to experiment or integrate into existing MCP ecosystems.

How to use

Connect with your MCP client to the Tenki weather service to retrieve current conditions and forecasts for Japan. You can run the server locally or remotely and use your MCP client’s standard request flow to access weather data. The Tenki MCP server is designed to respond to weather data queries in the MCP protocol, allowing you to build experiences like location-based weather dashboards, travel planning tools, or weather alerts integrated into your MCP-enabled applications.

How to install

Prerequisites: ensure you have the MCP runtime tools installed on your system. These tools let you run MCP servers either directly or by cloning their source.

Option A: Run without cloning the repository using an explicit MCP runtime command.

{
  "mcpServers": {
    "tenki": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/acxelerator/mcp-tenki.git", "mcp-tenki"]
    }
  }
}

Option B: Run with a local clone of the repository using the standard runtime command.

{
  "mcpServers": {
    "tenki": {
      "command": "uv",
      "args": ["--directory", "/PATH/TO/REPOSITORY/mcp_tenki", "run", "main.py"]
    }
  }
}

Additional notes

If you already have a preferred MCP runtime environment, you can switch between running the server directly with uvx and cloning the repository to run via uv. Both approaches start the Tenki MCP server, exposing weather data for Japan to your MCP clients.