Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"weather": {
"args": [
"-jar",
"/absolute/path/to/target/mcp-weather-server-0.0.1-SNAPSHOT.jar"
],
"command": "java"
}
}
}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 server for learning purposes. Wraps the free Open-Meteo weather API — no API key required.
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 / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Lab 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 server for learning purposes. Wraps the free Open-Meteo weather API — no API key required.
Built with Java 21, Spring Boot 3.5, and Spring AI 1.1.
| Tool | Description |
|---|---|
get_coordinates | Resolve a city name to latitude, longitude, and country |
get_current_weather | Get current weather by latitude and longitude |
get_weather_by_city | Get current weather by city name (geocoding + forecast) |
./mvnw clean package
java -jar target/mcp-weather-server-0.0.1-SNAPSHOT.jar
The server communicates over STDIO (standard input/output).
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"weather": {
"command": "java",
"args": ["-jar", "/absolute/path/to/target/mcp-weather-server-0.0.1-SNAPSHOT.jar"]
}
}
}
Restart Claude Desktop. You can then ask things like "What's the weather in Tokyo?"
spring-ai-starter-mcp-server)