What makes up an agent
How agents run
When a user sends a message:Evaluation strategies
The evaluation strategy controls how the agent thinks. This is one of the most important settings for an agent.When you add MCP servers or other agents to your agent, Studio automatically switches the evaluation strategy to
react. This ensures the agent can actually use its tools. You can override this manually in Dev Mode.The ReAct loop explained
react is the most powerful strategy. The agent follows this cycle:
- Reason — “I need to look up the user’s account to answer this”
- Act — calls the
get_accounttool from an MCP server - Observe — receives the tool result
- Reason again — “Now I have the account info, I can answer”
- Respond — generates the final answer
Next steps
Creating an Agent
Step-by-step walkthrough of the agent creation wizard.
Dev Mode
Take full control of the system prompt and evaluation strategy.