# Convert Research Papers to Markdown for Summarization

**Use case:** 

Transform academic research papers and articles from online sources into clean Markdown format, preparing them for automated summarization or knowledge graph cr

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7158934/"
    },
    {
      "url": "https://www.nature.com/articles/s41586-020-2003-8"
    },
    {
      "url": "https://arxiv.org/abs/2203.07255"
    }
  ],
  "includeSelectors": [
    "article",
    ".article-text",
    ".abstract"
  ],
  "excludeSelectors": [
    ".header",
    ".footer",
    ".sidebar",
    ".references-list"
  ],
  "useJavaScript": true,
  "headingStyle": "ATX",
  "stripTags": [
    "script",
    "style",
    "figure"
  ],
  "auth": {},
  "timeout": 30
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Page Title"
  },
  "markdown_length": {
    "label": "Markdown Size"
  },
  "success": {
    "label": "Status"
  }
}
```

## About this Actor

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