We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a97499e commit caec241Copy full SHA for caec241
mcp_server/prompts/prompts.py
@@ -23,7 +23,7 @@ def register_prompts(mcp):
23
24
@mcp.prompt()
25
async def rca(
26
- dci_job_id: str = Annotated[
+ dci_job_id: Annotated[
27
str, "The DCI job ID for which to perform root cause analysis (RCA)."
28
],
29
) -> str:
@@ -50,7 +50,7 @@ async def rca(
50
51
52
async def weekly(
53
- subject: str = Annotated[
+ subject: Annotated[
54
str, "The subject of the analysis (team name or id, remoteci name or id)."
55
56
@@ -67,7 +67,7 @@ async def weekly(
67
68
69
async def biweekly(
70
71
72
73
0 commit comments