> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Firecrawl MCP Setup

Let's walk through a real example — adding the Firecrawl MCP server so QoderWork can scrape web pages, crawl websites, and extract structured data from the internet on your behalf.

### Step 1: Get the Config from an MCP Marketplace

1. Open your browser and visit [mcp.so](https://mcp.so).
2. Search for **Firecrawl** and open the server detail page.
3. Review the description and the list of supported tools to make sure it fits your needs.
4. Locate the **JSON Config** block on the page and click **Copy** to copy the full configuration to your clipboard.

The copied content looks something like this:

```json theme={null}
{
  "mcpServers": {
    "firecrawl-mcp": {
      "command": "npx",
      "args": ["-y", "firecrawl-mcp"],
      "env": {
        "FIRECRAWL_API_KEY": "fc-your-api-key"
      }
    }
  }
}
```

<Tip>
  Firecrawl requires an API key. Sign up at [firecrawl.dev](https://firecrawl.dev) to get one, then include it in the `env` field of your config.
</Tip>

### Step 2: Add It to QoderWork

1. Open the QoderWork desktop app and go to the left sidebar under **Extensions** → **Connectors**.
2. Click **+ Add** → **Paste JSON Config**.
3. Paste the config into the dialog.
4. Click **Import**.

Once added, the server appears under **Custom** on the **Installed** tab. A green dot next to the name means the connection is live. Expand the entry to browse its tools.

### Step 3: Verify the Connection

Start a conversation in QoderWork and try calling the service:

* "Scrape the content of [https://example.com](https://example.com)"
* "Crawl [https://docs.example.com](https://docs.example.com) and list all pages"
* "Extract the main article text from [https://news.ycombinator.com](https://news.ycombinator.com)"

If QoderWork invokes the MCP server and returns results, you're all set.

## Next Steps

<CardGroup cols={2}>
  <Card title="Connectors" icon="plug" href="/qoderwork/connectors">
    Connect browser, calendar, Microsoft 365, DingTalk, and more
  </Card>

  <Card title="Skills" icon="wand-magic-sparkles" href="/qoderwork/skills">
    Extend QoderWork capabilities with Skills
  </Card>
</CardGroup>
