add MCP raw filter support: body+path args, update mcp_filter demo handlers

This commit is contained in:
Adil Hafeez 2026-03-17 13:40:31 -07:00
parent d26abbfb9c
commit b88bdb94f2
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
16 changed files with 226 additions and 116 deletions

View file

@ -64,7 +64,7 @@ mod tests {
let agent_pipeline = AgentFilterChain {
id: "terminal-agent".to_string(),
filter_chain: Some(vec![
input_filters: Some(vec![
"filter-agent".to_string(),
"terminal-agent".to_string(),
]),
@ -110,7 +110,7 @@ mod tests {
// Create a pipeline with empty filter chain to avoid network calls
let test_pipeline = AgentFilterChain {
id: "terminal-agent".to_string(),
filter_chain: Some(vec![]), // Empty filter chain - no network calls needed
input_filters: Some(vec![]), // Empty filter chain - no network calls needed
description: None,
default: None,
};