Skip to content

Commit a1d47d1

Browse files
author
akschord1
committed
feat: add streamable_http endpoint to MCP documentation and include test instructions
1 parent 769bb3d commit a1d47d1

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

deploy/docker/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,11 @@ MCP is an open protocol that standardizes how applications provide context to LL
257257
258258
### Connecting via MCP
259259
260-
The Crawl4AI server exposes two MCP endpoints:
260+
The Crawl4AI server exposes three MCP endpoints:
261261
262262
- **Server-Sent Events (SSE)**: `http://localhost:11235/mcp/sse`
263263
- **WebSocket**: `ws://localhost:11235/mcp/ws`
264+
- **Streamable_http**: `http://localhost:11235/mcp/http`
264265
265266
### Using with Claude Code
266267
@@ -297,6 +298,13 @@ You can test the MCP WebSocket connection using the test file included in the re
297298
python tests/mcp/test_mcp_socket.py
298299
```
299300

301+
You can test the MCP streamable_http connection using the test file included in the repository:
302+
303+
```bash
304+
# From the repository root
305+
python tests/mcp/test_mcp_http.py
306+
```
307+
300308
### MCP Schemas
301309

302310
Access the MCP tool schemas at `http://localhost:11235/mcp/schema` for detailed information on each tool's parameters and capabilities.

docs/md_v2/core/docker-deployment.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,11 @@ MCP is an open protocol that standardizes how applications provide context to LL
257257
258258
### Connecting via MCP
259259
260-
The Crawl4AI server exposes two MCP endpoints:
260+
The Crawl4AI server exposes three MCP endpoints:
261261
262262
- **Server-Sent Events (SSE)**: `http://localhost:11235/mcp/sse`
263263
- **WebSocket**: `ws://localhost:11235/mcp/ws`
264+
- **Streamable_http**: `http://localhost:11235/mcp/http`
264265
265266
### Using with Claude Code
266267
@@ -297,6 +298,13 @@ You can test the MCP WebSocket connection using the test file included in the re
297298
python tests/mcp/test_mcp_socket.py
298299
```
299300

301+
You can test the MCP streamable_http connection using the test file included in the repository:
302+
303+
```bash
304+
# From the repository root
305+
python tests/mcp/test_mcp_http.py
306+
```
307+
300308
### MCP Schemas
301309

302310
Access the MCP tool schemas at `http://localhost:11235/mcp/schema` for detailed information on each tool's parameters and capabilities.

0 commit comments

Comments
 (0)