weather
Click on "Deploy 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., "@weatherwhat's the weather in San Francisco?"
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.
Demo MCP Server setup
Mainly following the official tutorial from Anthropic: Build an MCP server (*)
(*) Implementation Notes:
You may have to do three things differently from what the official docs describe:
1️⃣ Path to claude_desktop_config.json
After building & running the MCP server, when you're about to test it with Claude Desktop, the tutorial specifies the need to create and edit a config file claude_desktop_config.json (Testing your server with Claude for Desktop) at AppData\Claude\claude_desktop_config.json.
This would be the step that allows your Client, i.e. Claude for Desktop in this case, to know about the MCP server you just built.
But the path mentioned in the Anthropic docs may be incompatible with the actual Claude Desktop installation on your MradServices PC.
How to open the file automatically on your system:
Open the Claude for Desktop app.
Go to the system tray menu and open Settings.
Click on the Developer tab on the left sidebar.
Click the Edit Config button to open or create the file automatically.
Then add the mcpServers schema to the file, save the changes, and restart Claude for Desktop.
You can then pick up with the instructions from the official tutorial at this step: Test with commands
2️⃣ Path to mcp logs
For troubleshooting MCP Server testing, the Anthropic docs mention incompatible paths at this step again (Getting logs from Claude for Desktop).
Actually, on your PC, you may find the files under:
"C:\Users\<your-windows-username>\AppData\Local\Claude\logs\mcp.log"
"C:\Users\<your-windows-username>\AppData\Local\Claude\logs\mcp-server-weather.log"
3️⃣ Optional: Preventing false positives
After successfully activating the weather MCP server connector in Claude for Desktop, the official docs recommend to test it just by asking: "What's the weather in X?".
But Claude might just use its built-in weather-tool to process this prompt, instead of the weather server you built.
To ensure the server is used, simply add this instruction to the prompt: "Use the 'weather' connector". (Usually, Claude will remember this preference and you just have to specify it once)
You'll know Claude used the MCP Server if you see the actual tool call and the request/response schemas:
Related MCP server: weather-mcp-server
How the process (roughly) works at a glance
sequenceDiagram
actor User
participant Client as Client<br/>(e.g. Claude for Desktop)
participant Claude
participant MCPServer as MCP Server
User->>Client: Ask a question
Client->>Claude: Send question
Claude->>Claude: Analyze available tools and decide which to use
Claude-->>Client: Request tool call(s)
Client->>MCPServer: Execute chosen tool(s)
MCPServer-->>Client: Return results (**)
Client->>Claude: Send results
Claude->>Claude: Formulate natural language response
Claude-->>Client: Return response
Client-->>User: Display response(**) Results always pass through the client, since Claude has no direct connection to the MCP server
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for Xweather weather data: conditions, forecasts, alerts, and more.
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
MCP server for weather with reasoning — umbrella advice, outdoor checks, city comparisons.
OpenWeather MCP — wraps the OpenWeatherMap API (openweathermap.org)
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides current weather and multi-day forecasts for any location worldwide, integrable with MCP clients like Claude.4Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables Claude Desktop to query real-time weather information, forecasts, and history via the OpenWeatherMap API.698MIT
- FlicenseNot gradedqualityDmaintenanceEnables MCP clients like Kiro and Claude to access current weather conditions and forecasts for any location using the OpenWeatherMap API.-
- AlicenseNot gradedqualityBmaintenanceProvides weather data including current conditions, forecasts, and summaries via Open-Meteo with no API key required, enabling natural language queries through an MCP interface.MIT