From a70a9659756855810c362579e1afc73fcf41b5fc Mon Sep 17 00:00:00 2001 From: Salman Paracha Date: Mon, 22 Dec 2025 17:47:51 -0800 Subject: [PATCH] updating the types of filters we support --- docs/source/concepts/filter_chain.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/concepts/filter_chain.rst b/docs/source/concepts/filter_chain.rst index cfb92475..3bcae318 100644 --- a/docs/source/concepts/filter_chain.rst +++ b/docs/source/concepts/filter_chain.rst @@ -54,7 +54,7 @@ Filters are implemented as simple RESTful endpoints reachable via HTTP. If you w When defining a filter in Plano configuration, the following fields are optional: -* ``type``: Controls the filter runtime (defaults to ``mcp``). You can omit this if you're using MCP. +* ``type``: Controls the filter runtime (defaults to ``mcp``). You can also set this to ``rest`` for plain HTTP filters. * ``transport``: Controls how Plano talks to the filter (defaults to ``streamable-http`` for efficient streaming interactions over HTTP). You can omit this for standard HTTP transport. * ``tool``: Names the MCP tool Plano will invoke (by default, the filter ``id``). You can omit this if the tool name matches your filter id.