Weather Report

Created By
forerunner29 months ago
这是一个查询天气的mcp server项目:通过调用官网数据,获取城市的经纬度,然后再调用天气查询网站,获得天气预报。
Overview

what is Weather Report?

Weather Report is an MCP server project that allows users to query weather information by fetching city coordinates and retrieving weather forecasts from a weather query website.

how to use Weather Report?

To use Weather Report, set up the server by running the command uv --directory your folder path run weather.py and then make requests to the server to get weather data for specific cities.

key features of Weather Report?

  • Fetches city coordinates from official data sources.
  • Retrieves real-time weather forecasts from a weather query website.
  • Easy server setup and configuration.

use cases of Weather Report?

  1. Providing weather updates for specific cities.
  2. Integrating weather data into applications or websites.
  3. Assisting in planning events based on weather conditions.

FAQ from Weather Report?

  • Can Weather Report provide weather data for all cities?

Yes! Weather Report can provide data for any city as long as the coordinates are available.

  • Is Weather Report free to use?

Yes! Weather Report is open-source and free to use for everyone.

  • How accurate is the weather data?

The accuracy of the weather data depends on the source of the weather query website.

Server Config

{
  "mcpServers": {
    "weather": {
      "disabled": false,
      "timeout": 60,
      "command": "uv",
      "args": [
        "--directory",
        "your folder path",
        "run",
        "weather.py"
      ],
      "transportType": "stdio"
    }
  }
}
Project Info
Created At
9 months ago
Updated At
9 months ago
Author Name
forerunner2
Star
-
Language
-
License
-

Recommend Servers

View All
Docwand

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

14 hours ago