Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -898,6 +898,25 @@ spring:
This configuration sets up an MCP client that connects to a Docker-based MCP server. The connection uses STDIO transport
through Docker's socat utility to connect to a TCP endpoint.

### Remote Streamable HTTP MCP Connection

Embabel applications can also connect directly to remote Streamable HTTP MCP servers. For example, Parallel Search MCP
provides `web_search` and `web_fetch` without requiring an account or API key:

```yaml
spring:
ai:
mcp:
client:
streamable-http:
connections:
parallel:
url: https://search.parallel.ai
```

Spring AI appends the default `/mcp` endpoint, so this configuration connects to
`https://search.parallel.ai/mcp`.

### Docker Desktop MCP Integration

Docker has embraced MCP with their Docker MCP Catalog and Toolkit, which provides:
Expand Down