A simple Model Context Protocol (MCP) server that provides real-time weather data to AI agents like GitHub Copilot
{
"mcpServers": {
"mcp-weather-server-demo": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A simple Model Context Protocol (MCP) server that provides real-time weather data to AI agents like GitHub Copilot
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 281 days ago. 8 stars.
Will it work with my client?
Transport: stdio, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Mcp Weather Server Demo and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A simple Model Context Protocol (MCP) server that provides real-time weather data to AI agents like GitHub Copilot.
Clone the repository:
git clone https://github.com/debs-obrien/mcp-weather-server-demo.git
cd mcp-weather-server-demo
npm install
Test with MCP Inspector:
npx -y @modelcontextprotocol/inspector npx -y tsx main.ts
mcp.jsonfile in .vscode folderAsk GitHub Copilot:
The server provides a get-weather tool that:
// Creates MCP server with weather tool
const server = new McpServer({
name: "Weather Server",
version: "1.0.0"
});
// Defines the get-weather tool
server.tool('get-weather', 'Tool to get the weather of a city', ...);
// Connects via stdio transport
const transport = new StdioServerTransport();
server.connect(transport);
@modelcontextprotocol/sdk - MCP server frameworkzod - Schema validationBuilding Your First MCP Weather Server: A Complete Tutorial