Life Assistant MCP Server
Life Assistant MCP Server (Маленький инструментарий для повседневной жизни)
MCP-сервер на основе фреймворка HelloAgents, объединяющий три возможности: запрос погоды + горячие новости + обработка текста в один компактный инструментарий. Все используемые публичные API не требуют ключей, код состоит всего из 96 строк — просто и без лишних сложностей.
Функциональные возможности
🌤️ Запрос погоды: поддержка 12 крупных городов Китая в реальном времени (wttr.in, без ключа)
🔥 Горячие новости: ТОП-10 заголовков Toutiao / Baidu
🔍 Поиск новостей: поиск последних новостей по ключевым словам (Bing News RSS, без ключа)
✂️ Текстовые инструменты: реверс, подсчёт слов, перевод в верхний/нижний регистр
Related MCP server: lkx-mcp
Установка
pip install hello-agents requestsИспользование
Запуск напрямую (HTTP-транспорт, порт 8081 по умолчанию)
python server.pyТранспорт stdio (для локального использования с Claude Desktop / HelloAgents)
python server.py --stdioИспользование в Claude Desktop
Отредактируйте claude_desktop_config.json:
{
"mcpServers": {
"life-assistant": {
"command": "python",
"args": ["/path/to/server.py", "--stdio"]
}
}
}Использование в HelloAgents
from hello_agents import SimpleAgent, HelloAgentsLLM
from hello_agents.tools import MCPTool
agent = SimpleAgent(name="生活助手", llm=HelloAgentsLLM())
tool = MCPTool(server_command=["python", "server.py", "--stdio"])
agent.add_tool(tool)
response = agent.run("北京今天天气怎么样?顺便看看今天有什么热搜")Запуск демонстрационного скрипта
В репозитории есть полная демонстрация (SimpleAgent + инструментарий: запрос погоды → просмотр горячих новостей → реверс текста):
python examples/demo_agent.pyИнструменты API
Инструмент | Описание | Параметры |
| Получить текущую погоду в городе |
|
| Список поддерживаемых городов для погоды | Нет |
| ТОП-10 горячих новостей |
|
| Поиск новостей по ключевому слову |
|
| Реверс текста |
|
| Подсчёт слов |
|
| Преобразование регистра |
|
| Информация о сервере | Нет |
Примеры
get_weather
{"city": "北京", "temperature": 23.0, "condition": "Patchy rain nearby", "humidity": "85", "wind_kmh": 1.1, "timestamp": "2026-08-18 09:58:21"}get_hot_news
[{"rank": 1, "title": "天安门下半旗悼念朱镕基同志", "heat": "9733617"}, ...]search_news
[{"title": "从DeepSeek到"人工智能+":中美AI竞赛究竟在比什么?", "url": "https://...", "date": "Sun, 02 Aug 2026"}, ...]Источники данных (все без ключей)
Погода: https://wttr.in
Горячие новости: https://www.toutiao.com/hot-event/hot-board , https://top.baidu.com
Новости: https://www.bing.com/news
Поддерживаемые города
Пекин, Шанхай, Гуанчжоу, Шэньчжэнь, Ханчжоу, Чэнду, Чунцин, Ухань, Сиань, Нанкин, Тяньцзинь, Сучжоу
Также поддерживаются английские названия городов для запроса любого города мира.
Лицензия
MIT License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides weather forecast data for locations in China through HeFeng Weather API, supporting real-time, hourly, and daily forecasts with full Chinese weather descriptions.313ISC
- Flicense-qualityDmaintenanceProvides utility tools including weather alerts, GitHub repository analysis, phone model lookup, Chinese ID card parsing, and User-Agent parsing.
- Alicense-qualityDmaintenanceProvides global weather information including current conditions, 5-day forecasts, and US weather alerts through OpenWeatherMap and National Weather Service APIs. Offers native support for Chinese city names and multiple temperature units.14MIT
- Alicense-qualityDmaintenanceProvides Chinese city weather query and forecast functionality using Juhe Weather API.6MIT
Related MCP Connectors
Live data: weather, air quality, FX, CN/HK/US stocks, IP geo, domain, SSL, China reachability.
News, web search, mail, markets, weather, places, files, calendar, contacts. 67 tools, one endpoint.
TravelMind: 8 MCP tools for travel (12306 trains, flights, hotels, geocode, planning, policy).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kkmmtt0919/life-assistant-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server