> ## Documentation Index
> Fetch the complete documentation index at: https://sec-edgar-mcp.amorelli.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Docker Setup

> Running SEC Edgar MCP with Docker

## Docker Installation

Docker provides the most reliable and consistent way to run SEC Edgar MCP across different platforms.

## Quick Start

```bash theme={null}
docker pull stefanoamorelli/sec-edgar-mcp:latest
```

## Configuration

Add to your MCP client configuration:

```json theme={null}
{
  "mcpServers": {
    "sec-edgar-mcp": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "SEC_EDGAR_USER_AGENT=Your Name (name@domain.com)",
        "stefanoamorelli/sec-edgar-mcp:latest"
      ]
    }
  }
}
```
