From af4f41a1a8598507561f3b18ea6bdee9b4a367ea Mon Sep 17 00:00:00 2001 From: Justin Yoo Date: Wed, 3 Sep 2025 18:08:35 +0900 Subject: [PATCH] Add the HTTP option for running container --- packages/markitdown-mcp/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/markitdown-mcp/README.md b/packages/markitdown-mcp/README.md index 9e03f105..3561b3e2 100644 --- a/packages/markitdown-mcp/README.md +++ b/packages/markitdown-mcp/README.md @@ -50,6 +50,16 @@ docker run -it --rm -v /home/user/data:/workdir markitdown-mcp:latest Once mounted, all files under data will be accessible under `/workdir` in the container. For example, if you have a file `example.txt` in `/home/user/data`, it will be accessible in the container at `/workdir/example.txt`. +
+ Running with the HTTP option + +If you want to run the container with the HTTP option, run the docker command like: + +```bash +docker run -it --rm -p 3001:3001 markitdown-mcp:latest --http --host 127.0.0.1 --port 3001 +``` +
+ ## Accessing from Claude Desktop It is recommended to use the Docker image when running the MCP server for Claude Desktop.