Juhe Weather MCP Server
OfficialProvides access to the Juhe Weather API, allowing users to query real-time weather forecasts for cities and regions across China by specifying location names.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Juhe Weather MCP Serverwhat's the weather like in Beijing today?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Juhe Weather MCP Server
一个提供全国天气预报查询功能的模型上下文协议(Model Context Protocol)服务器。该服务器使大型语言模型(LLMs)能够获取全国城市、地区的天气预报情况。
Components
Tools
服务器实现了一个工具:
query_weather: 根据城市、地区、区县名称查询当地实时天气预报情况.
需要传入 "city"(城市、区县等名称)作为必须的字符串参数。
async def query_weather(
city: str = Field(description="查询的城市名称,如北京、上海、广州、深圳、泰顺等;城市或区县或地区名使用简写,严格按照规范填写,否则会导致查询失败")
) -> list[types.TextContent | types.ImageContent | types.EmbeddedResource]:Related MCP server: HeFeng Weather MCP Server
Install
This server requires Python 3.10 or higher. Install dependencies using uv (recommended) or pip
Using uv (recommended)
When using uv no specific installation is needed. We will use uvx to directly run jweather-mcp-server.
uvx jweather-mcp-serverUsing PIP
Alternatively you can install jweather-mcp-server via pip:
pip install jweather-mcp-serverAfter installation, you can run it as a script using:
python -m jweather_mcp_serverConfiguration
Environment Variables
JUHE_WEATHER_API_KEY: 聚合数据的天气预报查询API密钥。获取:https://www.juhe.cn/docs/api/id/73
JUHE_WEATHER_API_KEY=your_api_keyConfigure For CLINE
"mcpServers": {
"jweather-mcp-server": {
"command": "uvx",
"args": [
"jweather-mcp-server"
],
"env": {
"JUHE_WEATHER_API_KEY": "your_api_key"
}
}
}"mcpServers": {
"jweather-mcp-server": {
"command": "python",
"args": [
"-m",
"jmobile_location_mcp_server"
],
"env": {
"JUHE_WEATHER_API_KEY": "your_api_key"
}
}
}Debugging
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx jweather-mcp-server Or if you've installed the package in a specific directory or are developing on it:
cd path/to/servers/src/jweather-mcp-server
npx @modelcontextprotocol/inspector uv run jweather-mcp-serverExamples of Questions for Cline
"查询下苏州的天气"
"今天上海的天气如何?"
Available Tools
1 toolquery_weatherC
根据城市、地区、区县名称查询当地实时天气预报情况
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | 查询的城市名称,如北京、上海、广州、深圳、泰顺等;城市或区县或地区名使用简写,严格按照规范填写,否则会导致查询失败 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions '实时' (real-time) which indicates freshness of data, but doesn't disclose important behavioral traits like rate limits, authentication requirements, error handling, or what happens when invalid city names are provided. The description is insufficient for a mutation-free query tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient Chinese sentence that gets straight to the point. It's appropriately sized for a simple query tool with one parameter. No wasted words or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a query tool with no annotations and no output schema, the description is incomplete. It doesn't explain what information the weather forecast includes (temperature, precipitation, etc.), the format of returned data, or any limitations. The agent would need to guess about the response structure and content.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the single parameter 'city' well-documented in the schema. The description adds minimal value beyond the schema, only reinforcing that queries are based on city/region/county names. With high schema coverage, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: querying real-time weather forecasts based on city/region/county names. It specifies the verb ('查询' - query) and resource ('天气预报情况' - weather forecast situation). However, with no sibling tools mentioned, it cannot demonstrate differentiation from alternatives, so it doesn't reach the highest score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention any prerequisites, constraints, or comparison with other weather-related tools. The absence of sibling tools doesn't excuse the lack of usage context for the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- First observed
query_weather
TDQS
With only one tool, there is no possibility of ambiguity or overlap between tools. The tool 'query_weather' has a clear and distinct purpose of querying real-time weather forecasts based on location names.
Since there is only one tool, naming consistency is inherently perfect. The tool name 'query_weather' follows a clear verb_noun pattern, which would be consistent if more tools were added.
A single tool is too few for a weather server's apparent scope, which typically involves forecasts, historical data, alerts, or multiple query types. This minimal set feels thin and limits functionality for agents.
The tool surface is severely incomplete for a weather domain. It only provides real-time queries, with obvious gaps like no support for forecasts (e.g., hourly, daily), historical data, weather alerts, or location-based searches beyond basic queries.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for current weather and multi-day forecasts worldwide, Chinese city names and output.
The official Model Context Protocol server for Ambee. It gives any MCP-compatible AI assistant — Claude, ChatGPT, Cursor, VS Code, Ollama, and more direct access to live air quality, pollen, and weather data. To get started, including information on signing up and obtaining your Ambee key, check out the Ambee documentation on https://docs.ambeedata.com
Hosted MCP server for Xweather weather data: conditions, forecasts, alerts, and more.
Open-Meteo tabanlı anahtarsız hava durumu tahmin MCP sunucusu.
Related MCP Servers
- FlicenseBqualityDmaintenanceA Model Context Protocol server that provides comprehensive weather data querying capabilities based on the Caiyun Weather API, supporting real-time weather, forecasts, and alerts with multi-language support.710-
- AlicenseBqualityDmaintenanceProvides weather forecast data for locations in China through HeFeng Weather API, supporting real-time, hourly, and daily forecasts with full Chinese weather descriptions.324ISC
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that enables AI assistants and LLMs to access real-time weather data and forecasts by connecting to the OpenWeatherMap API.-
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables AI assistants to fetch current weather, forecasts, and search for locations using WeatherAPI service through stdio communication.3MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/juhemcp/jweather-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server