You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ This is an [MCP](https://modelcontextprotocol.io/introduction) server that runs
91
91
"--workspace",
92
92
"/Users/you/dev/yourproject/",
93
93
"--lsp",
94
-
"pyright",
94
+
"pyright-langserver",
95
95
"--",
96
96
"--stdio"
97
97
]
@@ -145,13 +145,11 @@ This is an [MCP](https://modelcontextprotocol.io/introduction) server that runs
145
145
-`diagnostics`: Provides diagnostic information for a specific file, including warnings and errors.
146
146
-`hover`: Display documentation, type hints, or other hover information for a given location.
147
147
-`rename_symbol`: Rename a symbol across a project.
148
-
-`edit_file`: Allows making multiple text edits to a file programmatically.
149
-
150
-
The `edit_file` tool is not strictly related to the language server but it provides a more reliable and context economical way to edit files compared to search and replace based edit tools, provided you have line numbers.
148
+
-`edit_file`: Allows making multiple text edits to a file based on line numbers. Provides a more reliable and context-economical way to edit files compared to search and replace based edit tools.
151
149
152
150
## About
153
151
154
-
I hope that this server makes working with medium and large sized codebases more accessible to AI tools.
152
+
I hope that this server makes working with AI tools more convenient for medium and large sized codebases.
155
153
156
154
This codebase makes use of edited code from [gopls](https://go.googlesource.com/tools/+/refs/heads/master/gopls/internal/protocol) to handle LSP communication. See ATTRIBUTION for details. Everything here is covered by a permissive BSD style license.
0 commit comments