# Use markdownify-style output

**Use case:** 

Run Markdownify MCP Server to use markdownify-style output from webpage URLs and save clean Markdown rows in an Apify dataset.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://docs.apify.com/api/v2"
    }
  ],
  "useJavaScript": false,
  "includeSelectors": [
    "main",
    "article"
  ],
  "excludeSelectors": [
    "nav",
    "footer",
    ".advertisement",
    "aside"
  ],
  "stripTags": [
    "script",
    "style",
    "iframe",
    "noscript"
  ],
  "headingStyle": "atx"
}
```

## Output

```json
{
  "submittedUrl": {
    "label": "Submitted URL",
    "format": "string"
  },
  "url": {
    "label": "Final URL",
    "format": "string"
  },
  "title": {
    "label": "Page title",
    "format": "string"
  },
  "description": {
    "label": "Page description",
    "format": "string"
  },
  "markdownLength": {
    "label": "Markdown length",
    "format": "integer"
  },
  "convertedAt": {
    "label": "Converted at",
    "format": "string"
  },
  "markdown": {
    "label": "Markdown",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Markdownify MCP Server](https://apify.com/maximedupre/markdownify-mcp-server) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/markdownify-mcp-server) to learn more, explore other use cases, and run it yourself.