MCP Client Weather MCP Server
Overview
MCP Client Weather MCP Server is a Python-based project designed to facilitate weather data retrieval and management through a client-server architecture.
To use the project, run the command: python .\client.py "C:\Users\ujjwa\Desktop\learning\Agents\trial mcp server\weather\weather.py" to start the client and connect to the weather server.
- Client-server architecture for efficient data handling - Python implementation for easy integration and customization - Designed for weather data management and retrieval
- Retrieving real-time weather data for applications.
- Managing weather-related data for research purposes.
- Integrating weather data into other software solutions.
Add to your AI client
Use these steps to connect MCP Client Weather MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-client-weather-mcp-server-trymeuj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-client-weather-mcp-server-trymeuj"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-client-weather-mcp-server-trymeuj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-client-weather-mcp-server-trymeuj"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-client-weather-mcp-server-trymeuj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-client-weather-mcp-server-trymeuj"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-client-weather-mcp-server-trymeuj": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-client-weather-mcp-server-trymeuj"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-client-weather-mcp-server-trymeuj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-client-weather-mcp-server-trymeuj"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-client-weather-mcp-server-trymeuj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-client-weather-mcp-server-trymeuj"
]
}
}
}FAQ
What programming language is used?
The project is implemented in Python.
Is there a graphical user interface?
No, the project is command-line based.
Can I modify the code?
Yes, the project is open-source and can be customized as needed.