MCP Server 微服务接口平台

🌤️ 天气服务

提供全球城市天气信息查询服务

线上地址: https://weather.mcp.minglog.cn/mcp
本地地址: http://localhost:8002/mcp

通过城市名称获取天气

方法名: get_weather_from_cityname_tool

输入城市拼音名称,获取该城市的实时天气信息

通过经纬度获取天气

方法名: get_weather_from_latitude_longitude_tool

输入地理坐标(经度和纬度),获取该位置的实时天气信息

⏰ 时间服务

提供精确的当前时间获取服务

线上地址: https://time.mcp.minglog.cn/mcp
本地地址: http://localhost:8001/mcp

获取当前时间

方法名: get_current_time_tool

获取格式化的当前时间信息

📝 配置信息

服务配置JSON

{
  "mcpServers": {
    "weather-sse": {
      "url": "https://weather.mcp.minglog.cn/mcp",
      "name": "weather-http"
    },
    "time-sse": {
      "url": "https://time.mcp.minglog.cn/mcp",
      "name": "time-http"
    }
  }
}