Use MCP reource
#6138
Replies: 1 comment 5 replies
-
Resource could be used to implement memory / RAG, which is controlled by code to add context to model. See memory: https://microsoft.github.io/autogen/stable/user-guide/agentchat-user-guide/memory.html |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Now, MCP can provide
prompts
,tools
, andresources
for LLMs. Most agent frameworks, like Autogen and LangChain, support MCP tools, and prompts can be set insystem_message
. However, how to useresources
effectively has become an important challenge.For example, when setting up a MySQL server with MCP (which only has one tool: executing SQL), the process involves generating an SQL query, executing it with the tool, and then letting the LLM handle the raw data. But in reality, users only need the raw data itself. I'm not sure if using resources can solve this issue or if there's a better way for users to interact with the LLM.
Beta Was this translation helpful? Give feedback.
All reactions