# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.lumolabs.ai/tools/crypto.news-memecoin-news.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
