# Crypto.news Memecoin News

#### Crypto.news Memecoins News Tool (`cn_memecoins_news_tool`)

Fetches the latest news articles specifically tagged under "meme-coin" from `crypto.news`. Ideal for staying updated on developments in the memecoin sector.

***

```python
class CNMemecoinsNewsInput(BaseModel):
    limit: int = 8 # Number of articles (default 8, max 8)
```

***

**Key Functionality:**

* Scrapes the latest memecoin-specific news from `crypto.news/tag/meme-coin/`.
* For each article, it extracts the heading, a summary, any associated tickers mentioned, and the time it was posted.
* The number of articles returned is controlled by `limit`, effectively capped at 8.

***

**Sample Usage Queries (How an AI might use it):**

* "What's the latest news about memecoins from Crypto.news?"
* "Get me the top 5 recent memecoin articles."
* "Fetch today's memecoin headlines from Crypto.news."
* "Show me the newest updates in the memecoin space."
* "Can you retrieve some memecoin news for me via Crypto.news?"
* "What are the current news stories about meme coins on Crypto.news?"
* "Give me a summary of recent memecoin events reported by Crypto.news."
* "Fetch 3 memecoin news items from Crypto.news."

***

```python
class CNMemecoinsNewsTool(BaseTool):
    name: ClassVar[str] = "cn_memecoins_news_tool"
    description: ClassVar[str] = "Get the latest memecoin news from Crypto.news."
    args_schema: ClassVar[Type[BaseModel]] = CNMemecoinsNewsInput
```

***

**Important:**

* This tool operates **asynchronously** (`_arun`) only.
* Relies on **web scraping** `crypto.news`, so functionality may be impacted by website changes.
* The `limit` for news articles defaults to 8 and is also capped at a maximum of 8.
