For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.
Redirects
Verified Code examples on this page have been automatically tested and verified.Return direct redirect responses to send users to another location.
llm or mcp modes, the examples on this page show each option in tabs. For more information, see Routing-based configuration.Request redirectsRedirectA traffic management feature that sends clients to a different URL, with configurable scheme, authority, path, or status code. allow returning a direct response redirecting users to another location.
For example, the following configuration will return a 307 Temporary Redirect response with the header location: https://example.com/new-path:
# yaml-language-server: $schema=https://agentgateway.dev/schema/config
mcp:
port: 3000
policies:
requestRedirect:
scheme: https
authority:
full: example.com
path:
full: /new-path
status: 307
targets:
- name: everything
stdio:
cmd: npx
args: ["@modelcontextprotocol/server-everything"]