---
name: clawtious.creatormagic.ai
description: clawtious.creatormagic.ai provides two distinct utilities: a web content extractor that fetches a single URL and returns its main text as clean markdown, and an AI brainstorming tool that generates creative ideas for a given topic. Together they support lightweight research and ideation workflows for agents and content creators.
host: clawtious.creatormagic.ai
---

# clawtious.creatormagic.ai

This host serves agents and users who need to either pull readable content from a specific web page or generate a list of creative ideas on demand. It is not a general-purpose search or crawl platform; it handles one URL at a time and produces unstructured idea lists rather than structured data outputs. The two skills are complementary for content research and ideation pipelines but are otherwise independent utilities.

## When to use this host

Use this host when an agent needs to read the text of a single known URL (not bulk crawl) or generate a freeform list of creative ideas for a topic. Do not use it for scraping multiple pages in one call, retrieving raw HTML, processing PDFs or images, performing factual web searches, or producing structured data outputs beyond a markdown page dump or a text idea list. For multi-page crawling or search-based research, use a dedicated web search or crawl API. For structured content generation with specific output schemas, use a purpose-built generation API.

## Capabilities

### Web Content Extraction

Fetches a single web page by URL and returns its main textual content as clean markdown, along with metadata such as title, character length, and truncation status. Useful for summarization, research, or targeted data extraction from a known URL.

- **`extract-web-content-as-markdown`** — Fetches a web page by URL and returns its main content as clean markdown, along with the page title, character length, and truncation status.

### Creative Ideation

Generates a list of AI-produced creative ideas or concepts for a given topic in a single call, suitable for brainstorming content angles, product concepts, or creative prompts.

- **`generate-brainstorm-ideas`** — Generates a list of creative ideas and concepts for a given topic, returned as a structured text field named 'ideas'.

## Workflows

### Research-Informed Brainstorm

*Use when an agent needs to generate creative ideas grounded in the actual content of a specific web page, such as ideating around a competitor's product page, a news article, or a blog post.*

1. **`extract-web-content-as-markdown`** — Fetch and extract the textual content of the target URL as clean markdown to understand the subject matter.
2. **`generate-brainstorm-ideas`** — Use the extracted content or its key themes as the topic input to generate relevant creative ideas informed by the page's actual content.

## Skill reference

### `extract-web-content-as-markdown`

**Clawtious Web Extractor** — Fetches a web page by URL and returns its main content as clean markdown, along with the page title, character length, and truncation status.

*Use when:* Use when an agent needs to read and process the textual content of a web page in structured markdown format, such as for summarization, research, or data extraction from a specific URL.

*Not for:* Do not use for bulk crawling or scraping multiple pages in a single call; this endpoint processes one URL per request. Not suitable for retrieving raw HTML or non-text assets like images or PDFs.

**Inputs:**

- `url` (string, required) — The fully qualified URL of the web page to extract content from.

**Returns:** Returns a JSON object with the page URL, title, format ('markdown'), character length, a truncated flag, and the full extracted markdown content of the page.

**Example:** `{"url": "https://en.wikipedia.org/wiki/Solana"}`

---

### `generate-brainstorm-ideas`

**IdeaForge AI Brainstorm** — Generates a list of creative ideas and concepts for a given topic, returned as a structured text field named 'ideas'.

*Use when:* Use when an agent or user needs to generate multiple creative ideas, concepts, or content prompts for a specific topic, product, or challenge and wants AI-generated suggestions in a single call.

*Not for:* Do not use for factual research, data retrieval, or structured content generation requiring specific formats beyond a text list; use a search or structured generation API instead.

**Inputs:**

- `topic` (string, required) — The subject or prompt for which brainstormed ideas should be generated. Can be a product concept, challenge, theme, or any descriptive topic string.

**Returns:** Returns a JSON object with an 'ideas' string containing numbered creative ideas grounded in the provided topic, such as feature concepts and use-case suggestions.

**Example:** `{"topic": "Aurora AI app for personal finance: helping users track spending, set budgets, and reduce subscription waste"}`

---
