diff options
Diffstat (limited to 'crates/jira-at-home/src/mcp/catalog.rs')
| -rw-r--r-- | crates/jira-at-home/src/mcp/catalog.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/jira-at-home/src/mcp/catalog.rs b/crates/jira-at-home/src/mcp/catalog.rs index 2ff8e81..d6ce29b 100644 --- a/crates/jira-at-home/src/mcp/catalog.rs +++ b/crates/jira-at-home/src/mcp/catalog.rs @@ -47,7 +47,7 @@ const TOOL_SPECS: &[ToolSpec] = &[ }, ToolSpec { name: "issue.save", - description: "Create or overwrite one issue note at `issues/<slug>.md`.", + description: "Create or overwrite one issue note at `issues/<slug>.md` under the bound project's external state root.", dispatch: DispatchTarget::Worker, replay: ReplayContract::NeverReplay, }, @@ -112,7 +112,7 @@ fn tool_schema(name: &str) -> Value { "properties": { "slug": { "type": "string", - "description": "Stable slug. Stored at `issues/<slug>.md`." + "description": "Stable slug. Stored at `issues/<slug>.md` under the bound project's external state root." }, "body": { "type": "string", |