MCP US Weather Client/Server
About
A simple MCP (Model Context Protocol) server that provides weather alert information for US states, leveraging the National Weather Service (NWS) API. It also includes an example client application that demonstrates how to interact with the MCP server using the mcp_use library.
Details
- Author
- ankitmishralive
- Downloads
- 315
- Categories
- Developer Tools, API
Jump to
- Fetches active weather alerts for any US state
- Built using the fastmcp library for MCP server implementation
- Includes a client with conversation memory
- Integrates with Langchain for LLM interaction
- Provides a get_alerts tool and get_config resource
- Uses the public National Weather Service API (api.weather.gov)
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MCP US Weather Client/ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Clone the repository, install dependencies with uv add -r requirements.txt, and create a .env file with your Groq API key. Start the server with uv run mcp dev server/weather.py and the client with uv run server/client.py. At the client prompt, type queries such as "Get weather alerts for CA, NY or NJ" and use exit, quit, or clear to manage the conversation.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp us weather client/server": {
"Hands-on-MCP": {
"command": "uv",
"args": [
"run",
"mcp",
"dev",
"server/weather.py"
]
}
}
}
}
McpServers
{
"Hands-on-MCP": {
"command": "uv",
"args": [
"run",
"mcp",
"dev",
"server/weather.py"
]
}
}
MCP US Weather Client/Server
This was my first encounter with hands on implementation of MCP, i really liked it & i firmly believe MCP is here to stay, i have to implement some more projects to get more more better understanding about the overall ecosystem,About the repository, This repository contains a simple MCP (Model Context Protocol) server that provides weather alert information for US states, leveraging the National Weather Service (NWS) API. It also includes an example client application that demonstrates how to interact with the MCP server using the mcp_use library and Langchain.
Features
Weather Alerts: Fetches and formats active weather alerts for a specified US state.
MCP Integration: Demonstrates how to build an MCP server using the fastmcp library.
Client Example: Provides a client application that uses the server and integrates conversation memory.
Langchain Integration: Example showcases LLM integration.
Architecture
graph LR
%% MCP System
subgraph MCP_System
A[Client: client.py]
B[MCP Agent: mcp_use.MCPAgent]
C[MCP Client: mcp_use.MCPClient]
D[FastMCP Server: weather.py]
E[NWS API: api.weather.gov]
A --> B
B --> C
C --> D
D --> E
end
%% Data Flow
subgraph Data_Flow
F[User Input]
F --> A
E -->|Geo+JSON| D
D -->|Weather Data| B
B -->|LLM Interaction| F
end
%% Styling with visible text
classDef client fill:#f9f,stroke:#333,color:#000,font-weight:bold;
classDef agent fill:#ccf,stroke:#333,color:#000,font-weight:bold;
classDef server fill:#fcc,stroke:#333,color:#000,font-weight:bold;
classDef api fill:#ffc,stroke:#333,color:#000,font-weight:bold;
classDef user fill:#cfc,stroke:#333,color:#000,font-weight:bold;
class A client;
class B,C agent;
class D server;
class E api;
class F user;
%% Link styling
linkStyle default stroke:#000,stroke-width:2px;
Prerequisites
Before running the server and client, ensure you have the following installed:
Python 3.7+
uv (recommended for dependency management - https://github.com/astral-sh/uv)
Groq API key. This needs to be added to .env file.
mcp_use Library: Make sure you've installed this according to its documentation.
Installation
1. Clone the repository:
git clone <your_repository_url>
cd <repository_directory>
2. Install dependencies (using uv):
uv add -r requirements.txt
This command uses uv pip install . to install the project and its dependencies based on the pyproject.toml file in the current directory.
3. Create .env file:
Create a .env file in the root directory with the following content, replacing <YOUR_GROQ_API_KEY> with your actual Groq API key:
GROQ_API_KEY=<YOUR_GROQ_API_KEY>
Usage
Running the MCP Weather Server & Client
1. Start the server:
uv run mcp dev server/weather.py
1. Start the Client:
uv run server/client.py
Interacting with the Client
Type your queries at the prompt. For example: "Get weather alerts for CA, NY or NJ etc".
Type exit or quit to end the conversation.
Type clear to clear the conversation history.
Example Interactions
The agent will then use the get_alerts tool to fetch weather alerts for California and provide you with the formatted results.
The agent will then use the get_config tool to fetch the resource.
Configuration
server/weather.json
This configuration file describes the tools and resources exposed by the MCP server. It's crucial that this file accurately reflects the definitions in your weather.py file. See the mcp_use documentation for details on the format of this file. The default configuration is in the server folder.
Environment Variables
The client application uses environment variables, specifically GROQ_API_KEY, to authenticate with the Groq API. Make sure to set these variables before running the client. You can set those variables using the .env file.
Output
Console Output: This screenshot shows the typical output of the client application during a conversation, demonstrating how the agent interacts with the MCP server and utilizes the get_alerts tool.
- MCP Inspector: This screenshot shows the typical weather.json used with the MCP Inspector
Contact
For any inquiries or support, please reach out:
- Email: business@aiankit.com
- Personal Website: aiankit.com
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





