@treedy/lsp-mcp 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundled/python/src/rope_mcp/config.py +50 -14
- package/dist/bundled/python/src/rope_mcp/lsp/client.py +243 -4
- package/dist/bundled/python/src/rope_mcp/lsp/types.py +1 -0
- package/dist/bundled/python/src/rope_mcp/server.py +331 -77
- package/dist/bundled/python/src/rope_mcp/tools/__init__.py +0 -2
- package/dist/bundled/typescript/dist/index.js +6129 -5891
- package/dist/bundled/typescript/dist/index.js.map +5 -5
- package/dist/bundled/vue/dist/index.js +136 -71
- package/dist/bundled/vue/dist/vue-service.d.ts +16 -0
- package/dist/index.js +595 -328
- package/dist/index.js.map +7 -7
- package/package.json +1 -1
- package/dist/bundled/python/src/rope_mcp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/__pycache__/__init__.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/__pycache__/config.cpython-312.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/__pycache__/config.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/__pycache__/pyright_client.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/__pycache__/rope_client.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/__pycache__/server.cpython-312.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/__pycache__/server.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/lsp/__pycache__/__init__.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/lsp/__pycache__/client.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/lsp/__pycache__/types.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/__init__.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/change_signature.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/completions.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/definition.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/diagnostics.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/hover.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/move.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/references.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/rename.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/search.cpython-313.pyc +0 -0
- package/dist/bundled/python/src/rope_mcp/tools/__pycache__/symbols.cpython-313.pyc +0 -0
|
@@ -8,7 +8,6 @@ from .symbols import get_symbols
|
|
|
8
8
|
from .rename import do_rename
|
|
9
9
|
from .move import do_move
|
|
10
10
|
from .change_signature import do_change_signature, get_function_signature
|
|
11
|
-
from .diagnostics import get_diagnostics
|
|
12
11
|
from .search import get_search
|
|
13
12
|
|
|
14
13
|
__all__ = [
|
|
@@ -21,6 +20,5 @@ __all__ = [
|
|
|
21
20
|
"do_move",
|
|
22
21
|
"do_change_signature",
|
|
23
22
|
"get_function_signature",
|
|
24
|
-
"get_diagnostics",
|
|
25
23
|
"get_search",
|
|
26
24
|
]
|