diff --git a/fable-mcp/fable_mcp/server.py b/fable-mcp/fable_mcp/server.py index ca46da9..8e276d3 100644 --- a/fable-mcp/fable_mcp/server.py +++ b/fable-mcp/fable_mcp/server.py @@ -27,7 +27,7 @@ The hierarchy is: Project → Milestone → Task/Note. - **Tasks** belong to a project and optionally a milestone. They support sub-tasks via `parent_id`. - Status values: `todo`, `in_progress`, `done`, `cancelled` - - Priority values: `low`, `normal`, `high` + - Priority values: `none` (default), `low`, `medium`, `high` - **Notes** are free-form markdown documents. They can belong to a project or be standalone (orphan notes). Orphan notes are included in the default RAG scope for chat conversations. @@ -241,7 +241,7 @@ async def fable_create_task( title: Task title (required). body: Markdown description / notes for the task. status: Initial status — one of: todo (default), in_progress, done, cancelled. - priority: One of: low, normal, high. Omit for no priority. + priority: One of: low, medium, high. Omit for no priority (defaults to "none"). project_id: Associate with a project (0 = no project). milestone_id: Place within a project milestone (0 = no milestone). parent_id: Make this a sub-task of another task (0 = top-level). @@ -280,7 +280,7 @@ async def fable_update_task( title: New title, or omit to leave unchanged. body: New markdown body, or omit to leave unchanged. status: New status — one of: todo, in_progress, done, cancelled. - priority: New priority — one of: low, normal, high. + priority: New priority — one of: none, low, medium, high. project_id: New project (0 = remove from project). Omit to leave unchanged. milestone_id: New milestone (0 = remove from milestone). Omit to leave unchanged. """ diff --git a/fable-mcp/pyproject.toml b/fable-mcp/pyproject.toml index 0781762..8ef9133 100644 --- a/fable-mcp/pyproject.toml +++ b/fable-mcp/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "fable-mcp" -version = "0.2.4" +version = "0.2.5" description = "MCP server for Fabled Assistant" requires-python = ">=3.12" dependencies = [ diff --git a/frontend/src/views/SettingsView.vue b/frontend/src/views/SettingsView.vue index 7cd41ed..987081b 100644 --- a/frontend/src/views/SettingsView.vue +++ b/frontend/src/views/SettingsView.vue @@ -1,5 +1,5 @@