add_routing_rule
Add a new routing rule to a strategy by specifying keywords, agent name, and priority to manage communication between ACP agents and MCP clients effectively.
Instructions
Add a new routing rule to a strategy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agent_name | Yes | ||
description | No | ||
keywords | Yes | ||
priority | No | ||
strategy_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"agent_name": {
"title": "Agent Name",
"type": "string"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"keywords": {
"title": "Keywords",
"type": "string"
},
"priority": {
"default": 5,
"title": "Priority",
"type": "integer"
},
"strategy_name": {
"title": "Strategy Name",
"type": "string"
}
},
"required": [
"strategy_name",
"keywords",
"agent_name"
],
"type": "object"
}