We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7886936 commit f941065Copy full SHA for f941065
src/mcp_text_editor/server.py
@@ -132,10 +132,12 @@ def get_tool_description(self) -> Tool:
132
"line_start": {
133
"type": "integer",
134
"default": 1,
135
+ "description": "Starting line number (1-based). it should be matched with the start line number when get_text_file_contents is called.",
136
},
137
"line_end": {
138
"type": ["integer", "null"],
139
"default": None,
140
+ "description": "Ending line number (null for end of file). it should be matched with the end line number when get_text_file_contents is called.",
141
142
"contents": {"type": "string"},
143
"range_hash": {
0 commit comments