Update README for public chat search limit

This commit is contained in:
mxl 2026-03-16 19:00:50 -07:00
parent e7421759bd
commit 0840b76a67

View file

@ -116,7 +116,7 @@ This MCP server exposes a huge suite of Telegram tools. **Every major Telegram/T
- **edit_chat_photo(chat_id, file_path)**: Update chat photo from allowed roots - **edit_chat_photo(chat_id, file_path)**: Update chat photo from allowed roots
### Search & Discovery ### Search & Discovery
- **search_public_chats(query)**: Search public chats/channels/bots - **search_public_chats(query, limit)**: Search public chats/channels/bots with a configurable result limit
- **search_messages(chat_id, query, limit)**: Search messages in a chat - **search_messages(chat_id, query, limit)**: Search messages in a chat
- **resolve_username(username)**: Resolve a username to ID - **resolve_username(username)**: Resolve a username to ID
@ -533,13 +533,14 @@ Successfully joined chat: Developer Community
```python ```python
@mcp.tool() @mcp.tool()
async def search_public_chats(query: str) -> str: async def search_public_chats(query: str, limit: int = 20) -> str:
""" """
Search for public chats, channels, or bots by username or title. Search for public chats, channels, or bots by username or title.
""" """
try: try:
result = await client(functions.contacts.SearchRequest(q=query, limit=20)) result = await client(functions.contacts.SearchRequest(q=query, limit=limit))
return json.dumps([format_entity(u) for u in result.users], indent=2) entities = [format_entity(e) for e in result.chats + result.users]
return json.dumps(entities, indent=2)
except Exception as e: except Exception as e:
return f"Error searching public chats: {e}" return f"Error searching public chats: {e}"
``` ```