diff --git a/content/en/docs/genai/v2/how-to/creating-agents/_index.md b/content/en/docs/genai/v2/how-to/creating-agents/_index.md index fff10b89620..b38ae4481a3 100644 --- a/content/en/docs/genai/v2/how-to/creating-agents/_index.md +++ b/content/en/docs/genai/v2/how-to/creating-agents/_index.md @@ -12,7 +12,7 @@ aliases: ## Introduction -This guide explains how to create an agent in your Mendix app that combines [knowledge base retrieval (RAG)](/agents/rag/) and [function calling](/agents/function-calling/) capabilities from Mendix Agents Kit. +This guide explains how to create an agent in your Mendix app that combines [knowledge base retrieval (RAG)](/agents/rag/) and [function calling](/agents/function-calling/) capabilities from Mendix Agents Kit. If you prefer to follow a learning path, this [learning path](https://academy.mendix.com/link/paths/175/Create-Your-First-Agent) for the intermediate level might be of interest to you. It contains even more detailed explanations and code prepared for download. ## Agent Use Case diff --git a/content/en/docs/genai/v2/reference-guide/mcp-modules/mcp-server.md b/content/en/docs/genai/v2/reference-guide/mcp-modules/mcp-server.md index 43f563ab018..efae6df548d 100644 --- a/content/en/docs/genai/v2/reference-guide/mcp-modules/mcp-server.md +++ b/content/en/docs/genai/v2/reference-guide/mcp-modules/mcp-server.md @@ -52,7 +52,7 @@ For example, see the `Example Implementations` folder inside the module, which c The MCP Server can be publicly accessed unless you specify [path-based restrictions](/developerportal/deploy/environments-details/#path-based-restrictions) on the endpoint when running on Mendix Cloud or on your own infrastructure. -If no authentication is enabled for the MCP Server, it can be accessed by any service without being authorized specifically. Be aware that this is not recommended for applications running on the public cloud. Currently, selecting a microflow is required. For test purposes, however, you can just delete the content of the attribute after setting up the MCP Server if you do not want to enable authentication. There is a corresponding example in the [GenAI Showcase app](https://marketplace.mendix.com/link/component/220475), where the `ACT_MCPServerConfiguration_InitializeMCPServer` microflow shows how this can be done. +If no authentication is enabled for the MCP Server, it can be accessed by any service without being authorized specifically. Be aware that this is not recommended for applications running on the public cloud. For most cases, you want to ensure that MCP clients must be authorized before using any resources from the MCP Server or even discover what resources are available. To enable authentication, you can specify a microflow in the `Create MCP Server` action. The microflow is executed each time a request is processed by the MCP Server.