Update docs/concepts/agents.md

Co-authored-by: Casper Nielsen <scni@novonordisk.com>
Signed-off-by: Bilgin Ibryam <bibryam@gmail.com>
This commit is contained in:
Bilgin Ibryam 2025-05-07 17:10:52 +01:00 committed by GitHub
parent 5ae366223d
commit cb38a3e02b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Agents dynamically select the appropriate tool for a given task, using LLMs to a
Dapr Agents includes built-in support for the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/), enabling agents to dynamically discover and invoke external tools through a standardized interface. Using the provided MCPClient, agents can connect to MCP servers via two transport options: stdio for local development and sse for remote or distributed environments.
Once connected, the MCP client fetches all available tools from the server and prepares them for immediate use within the agents toolset. This allows agents to incorporate capabilities exposed by external processes—such as local Python scripts or remote service without hardcoding or preloading them. Agents can invoke these tools at runtime, expanding their behavior based on whats offered by the active MCP server.
Once connected, the MCP client fetches all available tools from the server and prepares them for immediate use within the agents toolset. This allows agents to incorporate capabilities exposed by external processes—such as local Python scripts or remote services without hardcoding or preloading them. Agents can invoke these tools at runtime, expanding their behavior based on whats offered by the active MCP server.
### 5. Memory