A simple Model Context Protocol (MCP) server that provides real-time weather data to AI agents like GitHub Copilot
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-weather-server-demo": {
"command": "<see-readme>",
"args": []
}
}
}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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in maps
Real-time BART departures, trip planning, fares, stations, and advisories.
A Model Context Protocol (MCP) server providing TomTom's location services, search, routing, and traffic data to AI agents.
MCP server for the VesselAPI — maritime vessel tracking, port events, emissions, and navigation data
Global weather API: forecasts, historical data, marine, ski, astronomy and timezone.
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