Mcp Server Weather
Overview
Mcp Server Weather is a Node.js implementation of a weather forecast retrieval server based on the Model Context Protocol (MCP).
To use Mcp Server Weather, follow the Quickstart guide provided in the documentation at https://modelcontextprotocol.io/quickstart/server to set up the server and retrieve weather data.
- Retrieves real-time weather forecasts. - Built using Node.js for efficient performance. - Complies with the Model Context Protocol for interoperability.
- Integrating weather data into applications.
- Providing weather updates for IoT devices.
- Developing weather-related analytics tools.
Add to your AI client
Use these steps to connect Mcp Server Weather 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-server-weather-takumines": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weather-takumines"
]
}
}
}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-server-weather-takumines": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weather-takumines"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-weather-takumines": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weather-takumines"
]
}
}
}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-server-weather-takumines": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weather-takumines"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-weather-takumines": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weather-takumines"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-weather-takumines": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weather-takumines"
]
}
}
}FAQ
What programming language is used?
Mcp Server Weather is implemented in TypeScript.
Is there a guide for setup?
Yes! A Quickstart guide is available at the provided link.
Can I contribute to the project?
Yes! Contributions are welcome on the GitHub repository.