diff --git a/README.md b/README.md index 1ce2f4a66..24a8e9597 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ More examples in the [`examples/`](examples/README.md) directory. - [Installation](https://docker.github.io/docker-agent/getting-started/installation) · [Quick Start](https://docker.github.io/docker-agent/getting-started/quickstart) - [Agents](https://docker.github.io/docker-agent/concepts/agents) · [Models](https://docker.github.io/docker-agent/concepts/models) · [Tools](https://docker.github.io/docker-agent/concepts/tools) · [Multi-Agent](https://docker.github.io/docker-agent/concepts/multi-agent) - [Configuration Reference](https://docker.github.io/docker-agent/configuration/overview) -- [TUI](https://docker.github.io/docker-agent/features/tui) · [CLI](https://docker.github.io/docker-agent/features/cli) · [MCP Mode](https://docker.github.io/docker-agent/features/mcp-mode) · [RAG](https://docker.github.io/docker-agent/features/rag) +- [TUI](https://docker.github.io/docker-agent/features/tui) · [CLI](https://docker.github.io/docker-agent/features/cli) · [MCP Mode](https://docker.github.io/docker-agent/features/mcp-mode) · [RAG](https://docker.github.io/docker-agent/tools/rag) - [Model Providers](https://docker.github.io/docker-agent/providers/overview) · [Docker Model Runner](https://docker.github.io/docker-agent/providers/dmr) ## Contributing diff --git a/docs/_data/nav.yml b/docs/_data/nav.yml index 3c5b094ee..93746d8a2 100644 --- a/docs/_data/nav.yml +++ b/docs/_data/nav.yml @@ -79,6 +79,10 @@ url: /tools/openapi/ - title: A2A url: /tools/a2a/ + - title: RAG + url: /tools/rag/ + - title: MCP Catalog + url: /tools/mcp-catalog/ - section: Features items: @@ -98,8 +102,6 @@ url: /features/chat-server/ - title: Evaluation url: /features/evaluation/ - - title: RAG - url: /features/rag/ - title: Skills url: /features/skills/ - title: Remote MCP Servers diff --git a/docs/concepts/tools/index.md b/docs/concepts/tools/index.md index 41219e523..4a06b4b07 100644 --- a/docs/concepts/tools/index.md +++ b/docs/concepts/tools/index.md @@ -40,13 +40,14 @@ docker-agent ships with several built-in tools that require no external dependen | [LSP]({{ '/tools/lsp/' | relative_url }}) | Connect to Language Server Protocol servers for code intelligence | | [API]({{ '/tools/api/' | relative_url }}) | Create custom tools that call HTTP APIs without writing code | | [OpenAPI]({{ '/tools/openapi/' | relative_url }}) | Generate tools from an OpenAPI 3.x document | -| [RAG]({{ '/features/rag/' | relative_url }}) | Retrieval-augmented generation over indexed sources | +| [RAG]({{ '/tools/rag/' | relative_url }}) | Retrieval-augmented generation over indexed sources | | [Model Picker]({{ '/tools/model-picker/' | relative_url }}) | Let the agent pick between several models per turn | | [User Prompt]({{ '/tools/user-prompt/' | relative_url }}) | Ask users questions and collect interactive input | | [Transfer Task]({{ '/tools/transfer-task/' | relative_url }}) | Delegate tasks to sub-agents (auto-enabled with `sub_agents`) | | [Background Agents]({{ '/tools/background-agents/' | relative_url }}) | Dispatch work to sub-agents concurrently | | [Handoff]({{ '/tools/handoff/' | relative_url }}) | Hand the conversation off to another local agent in the same config (auto-enabled with `handoffs:`) | | [A2A]({{ '/tools/a2a/' | relative_url }}) | Connect to remote agents via the Agent-to-Agent protocol | +| [MCP Catalog]({{ '/tools/mcp-catalog/' | relative_url }}) | Discover and activate remote MCP servers from the Docker MCP Catalog on demand | ## MCP Tools @@ -67,5 +68,5 @@ See [Tool Config]({{ '/configuration/tools/#mcp-tools' | relative_url }}) for fu
For full configuration reference, see Tool Config. For RAG (document retrieval), see RAG.
+For full configuration reference, see Tool Config.
Persistent memory, web fetch, RAG over local docs, structured output for downstream pipelines.
- RAG guide → + RAG guide →