@@ -62,10 +62,6 @@ def write_note(
6262 help = "The project to write to. If not provided, the default project will be used."
6363 ),
6464 ] = None ,
65- workspace : Annotated [
66- Optional [str ],
67- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
68- ] = None ,
6965 local : bool = typer .Option (
7066 False , "--local" , help = "Force local API routing (ignore cloud mode)"
7167 ),
@@ -106,7 +102,6 @@ def write_note(
106102 content = content ,
107103 directory = folder ,
108104 project = project ,
109- workspace = workspace ,
110105 tags = tags ,
111106 output_format = "json" ,
112107 )
@@ -132,10 +127,6 @@ def read_note(
132127 Optional [str ],
133128 typer .Option (help = "The project to use. If not provided, the default project will be used." ),
134129 ] = None ,
135- workspace : Annotated [
136- Optional [str ],
137- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
138- ] = None ,
139130 local : bool = typer .Option (
140131 False , "--local" , help = "Force local API routing (ignore cloud mode)"
141132 ),
@@ -156,7 +147,6 @@ def read_note(
156147 mcp_read_note (
157148 identifier = identifier ,
158149 project = project ,
159- workspace = workspace ,
160150 include_frontmatter = include_frontmatter ,
161151 output_format = "json" ,
162152 )
@@ -195,10 +185,6 @@ def edit_note(
195185 help = "The project to edit. If not provided, the default project will be used."
196186 ),
197187 ] = None ,
198- workspace : Annotated [
199- Optional [str ],
200- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
201- ] = None ,
202188 local : bool = typer .Option (
203189 False , "--local" , help = "Force local API routing (ignore cloud mode)"
204190 ),
@@ -222,7 +208,6 @@ def edit_note(
222208 operation = operation ,
223209 content = content ,
224210 project = project ,
225- workspace = workspace ,
226211 section = section ,
227212 find_text = find_text ,
228213 expected_replacements = expected_replacements ,
@@ -260,10 +245,6 @@ def build_context(
260245 Optional [str ],
261246 typer .Option (help = "The project to use. If not provided, the default project will be used." ),
262247 ] = None ,
263- workspace : Annotated [
264- Optional [str ],
265- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
266- ] = None ,
267248 local : bool = typer .Option (
268249 False , "--local" , help = "Force local API routing (ignore cloud mode)"
269250 ),
@@ -284,7 +265,6 @@ def build_context(
284265 mcp_build_context (
285266 url = url ,
286267 project = project ,
287- workspace = workspace ,
288268 depth = depth ,
289269 timeframe = timeframe ,
290270 page = page ,
@@ -317,10 +297,6 @@ def recent_activity(
317297 Optional [str ],
318298 typer .Option (help = "The project to use. If not provided, the default project will be used." ),
319299 ] = None ,
320- workspace : Annotated [
321- Optional [str ],
322- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
323- ] = None ,
324300 local : bool = typer .Option (
325301 False , "--local" , help = "Force local API routing (ignore cloud mode)"
326302 ),
@@ -346,7 +322,6 @@ def recent_activity(
346322 page = page ,
347323 page_size = page_size ,
348324 project = project ,
349- workspace = workspace ,
350325 output_format = "json" ,
351326 )
352327 )
@@ -408,10 +383,6 @@ def search_notes(
408383 Optional [str ],
409384 typer .Option (help = "The project to use. If not provided, the default project will be used." ),
410385 ] = None ,
411- workspace : Annotated [
412- Optional [str ],
413- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
414- ] = None ,
415386 local : bool = typer .Option (
416387 False , "--local" , help = "Force local API routing (ignore cloud mode)"
417388 ),
@@ -482,7 +453,6 @@ def search_notes(
482453 mcp_search (
483454 query = query or None ,
484455 project = project ,
485- workspace = workspace ,
486456 search_type = search_type ,
487457 output_format = "json" ,
488458 page = page ,
@@ -592,10 +562,6 @@ def schema_validate(
592562 Optional [str ],
593563 typer .Option (help = "The project to use. If not provided, the default project will be used." ),
594564 ] = None ,
595- workspace : Annotated [
596- Optional [str ],
597- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
598- ] = None ,
599565 local : bool = typer .Option (
600566 False , "--local" , help = "Force local API routing (ignore cloud mode)"
601567 ),
@@ -629,7 +595,6 @@ def schema_validate(
629595 note_type = note_type ,
630596 identifier = identifier ,
631597 project = project ,
632- workspace = workspace ,
633598 output_format = "json" ,
634599 )
635600 )
@@ -660,10 +625,6 @@ def schema_infer(
660625 Optional [str ],
661626 typer .Option (help = "The project to use. If not provided, the default project will be used." ),
662627 ] = None ,
663- workspace : Annotated [
664- Optional [str ],
665- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
666- ] = None ,
667628 local : bool = typer .Option (
668629 False , "--local" , help = "Force local API routing (ignore cloud mode)"
669630 ),
@@ -686,7 +647,6 @@ def schema_infer(
686647 note_type = note_type ,
687648 threshold = threshold ,
688649 project = project ,
689- workspace = workspace ,
690650 output_format = "json" ,
691651 )
692652 )
@@ -714,10 +674,6 @@ def schema_diff(
714674 Optional [str ],
715675 typer .Option (help = "The project to use. If not provided, the default project will be used." ),
716676 ] = None ,
717- workspace : Annotated [
718- Optional [str ],
719- typer .Option (help = "Cloud workspace tenant ID or unique name to route this request." ),
720- ] = None ,
721677 local : bool = typer .Option (
722678 False , "--local" , help = "Force local API routing (ignore cloud mode)"
723679 ),
@@ -738,7 +694,6 @@ def schema_diff(
738694 mcp_schema_diff (
739695 note_type = note_type ,
740696 project = project ,
741- workspace = workspace ,
742697 output_format = "json" ,
743698 )
744699 )
0 commit comments