Skip to content

Commit 7fd9074

Browse files
committed
fetch_file_at_ref: raise default length from 50 to 100 lines
1 parent e0e29a8 commit 7fd9074

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/seclab_taskflows/mcp_servers/pvr_ghsa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def fetch_file_at_ref(
250250
path: str = Field(description="File path within the repository"),
251251
ref: str = Field(description="Git ref (commit SHA, tag, or branch) to fetch the file at"),
252252
start_line: int = Field(default=1, description="First line to return (1-indexed)"),
253-
length: int = Field(default=50, description="Number of lines to return"),
253+
length: int = Field(default=100, description="Number of lines to return (max 500)"),
254254
) -> str:
255255
"""
256256
Fetch a range of lines from a file at a specific git ref (commit SHA or tag).

0 commit comments

Comments
 (0)