@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.
Files changed (34) hide show
  1. package/dist/bundled/python/src/rope_mcp/config.py +50 -14
  2. package/dist/bundled/python/src/rope_mcp/lsp/client.py +243 -4
  3. package/dist/bundled/python/src/rope_mcp/lsp/types.py +1 -0
  4. package/dist/bundled/python/src/rope_mcp/server.py +331 -77
  5. package/dist/bundled/python/src/rope_mcp/tools/__init__.py +0 -2
  6. package/dist/bundled/typescript/dist/index.js +6129 -5891
  7. package/dist/bundled/typescript/dist/index.js.map +5 -5
  8. package/dist/bundled/vue/dist/index.js +136 -71
  9. package/dist/bundled/vue/dist/vue-service.d.ts +16 -0
  10. package/dist/index.js +595 -328
  11. package/dist/index.js.map +7 -7
  12. package/package.json +1 -1
  13. package/dist/bundled/python/src/rope_mcp/__pycache__/__init__.cpython-312.pyc +0 -0
  14. package/dist/bundled/python/src/rope_mcp/__pycache__/__init__.cpython-313.pyc +0 -0
  15. package/dist/bundled/python/src/rope_mcp/__pycache__/config.cpython-312.pyc +0 -0
  16. package/dist/bundled/python/src/rope_mcp/__pycache__/config.cpython-313.pyc +0 -0
  17. package/dist/bundled/python/src/rope_mcp/__pycache__/pyright_client.cpython-313.pyc +0 -0
  18. package/dist/bundled/python/src/rope_mcp/__pycache__/rope_client.cpython-313.pyc +0 -0
  19. package/dist/bundled/python/src/rope_mcp/__pycache__/server.cpython-312.pyc +0 -0
  20. package/dist/bundled/python/src/rope_mcp/__pycache__/server.cpython-313.pyc +0 -0
  21. package/dist/bundled/python/src/rope_mcp/lsp/__pycache__/__init__.cpython-313.pyc +0 -0
  22. package/dist/bundled/python/src/rope_mcp/lsp/__pycache__/client.cpython-313.pyc +0 -0
  23. package/dist/bundled/python/src/rope_mcp/lsp/__pycache__/types.cpython-313.pyc +0 -0
  24. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/__init__.cpython-313.pyc +0 -0
  25. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/change_signature.cpython-313.pyc +0 -0
  26. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/completions.cpython-313.pyc +0 -0
  27. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/definition.cpython-313.pyc +0 -0
  28. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/diagnostics.cpython-313.pyc +0 -0
  29. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/hover.cpython-313.pyc +0 -0
  30. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/move.cpython-313.pyc +0 -0
  31. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/references.cpython-313.pyc +0 -0
  32. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/rename.cpython-313.pyc +0 -0
  33. package/dist/bundled/python/src/rope_mcp/tools/__pycache__/search.cpython-313.pyc +0 -0
  34. 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
  ]