lspmcp 0.0.1__tar.gz
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.
- lspmcp-0.0.1/LICENSE +1 -0
- lspmcp-0.0.1/PKG-INFO +41 -0
- lspmcp-0.0.1/README.md +24 -0
- lspmcp-0.0.1/lspmcp/__init__.py +18 -0
- lspmcp-0.0.1/lspmcp.egg-info/PKG-INFO +41 -0
- lspmcp-0.0.1/lspmcp.egg-info/SOURCES.txt +9 -0
- lspmcp-0.0.1/lspmcp.egg-info/dependency_links.txt +1 -0
- lspmcp-0.0.1/lspmcp.egg-info/entry_points.txt +2 -0
- lspmcp-0.0.1/lspmcp.egg-info/top_level.txt +1 -0
- lspmcp-0.0.1/pyproject.toml +28 -0
- lspmcp-0.0.1/setup.cfg +4 -0
lspmcp-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Proprietary. All rights reserved, massiron.
|
lspmcp-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lspmcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: lspmcp — bridge any Language Server Protocol server to the Model Context Protocol, giving LLM agents real IDE-grade code intelligence. Part of the massiron ecosystem.
|
|
5
|
+
Author: massiron
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://massiron.com
|
|
8
|
+
Keywords: lsp,mcp,language-server,code-intelligence,massiron,llm-tools
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# lspmcp
|
|
19
|
+
|
|
20
|
+
**Language Server Protocol → Model Context Protocol bridge.**
|
|
21
|
+
Part of the [massiron](https://massiron.com) ecosystem.
|
|
22
|
+
|
|
23
|
+
`lspmcp` exposes any LSP server's code-intelligence — definitions, references,
|
|
24
|
+
diagnostics, hover, document symbols — to LLM agents over MCP. Your agent gets
|
|
25
|
+
real IDE-grade understanding of a codebase instead of guessing from text.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install lspmcp
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
> Early reserved release (`0.0.1`). Feature releases coming soon.
|
|
32
|
+
|
|
33
|
+
## Ecosystem
|
|
34
|
+
|
|
35
|
+
- **atlas** — deterministic code intelligence (0 LLM tokens)
|
|
36
|
+
- **deepstrain** — autonomous engineering agent
|
|
37
|
+
- **nodestone** — project cognition / continuity memory
|
|
38
|
+
- **adauto** — developer-marketing automation
|
|
39
|
+
- **lspmcp** — LSP → MCP bridge
|
|
40
|
+
|
|
41
|
+
© massiron. All rights reserved.
|
lspmcp-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# lspmcp
|
|
2
|
+
|
|
3
|
+
**Language Server Protocol → Model Context Protocol bridge.**
|
|
4
|
+
Part of the [massiron](https://massiron.com) ecosystem.
|
|
5
|
+
|
|
6
|
+
`lspmcp` exposes any LSP server's code-intelligence — definitions, references,
|
|
7
|
+
diagnostics, hover, document symbols — to LLM agents over MCP. Your agent gets
|
|
8
|
+
real IDE-grade understanding of a codebase instead of guessing from text.
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install lspmcp
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
> Early reserved release (`0.0.1`). Feature releases coming soon.
|
|
15
|
+
|
|
16
|
+
## Ecosystem
|
|
17
|
+
|
|
18
|
+
- **atlas** — deterministic code intelligence (0 LLM tokens)
|
|
19
|
+
- **deepstrain** — autonomous engineering agent
|
|
20
|
+
- **nodestone** — project cognition / continuity memory
|
|
21
|
+
- **adauto** — developer-marketing automation
|
|
22
|
+
- **lspmcp** — LSP → MCP bridge
|
|
23
|
+
|
|
24
|
+
© massiron. All rights reserved.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""lspmcp — Language Server Protocol → Model Context Protocol bridge.
|
|
2
|
+
|
|
3
|
+
Part of the massiron ecosystem (https://massiron.com).
|
|
4
|
+
|
|
5
|
+
This is an early reserved release. The bridge exposes any LSP server's
|
|
6
|
+
code-intelligence (definitions, references, diagnostics, hover, symbols)
|
|
7
|
+
to LLM agents over MCP.
|
|
8
|
+
"""
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
__version__ = "0.0.1"
|
|
12
|
+
__product__ = "lspmcp"
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def main() -> None:
|
|
16
|
+
"""Entry point — prints status until the first feature release ships."""
|
|
17
|
+
print(f"lspmcp {__version__} — LSP→MCP bridge (massiron ecosystem)")
|
|
18
|
+
print("Early reserved release. See https://massiron.com")
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lspmcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: lspmcp — bridge any Language Server Protocol server to the Model Context Protocol, giving LLM agents real IDE-grade code intelligence. Part of the massiron ecosystem.
|
|
5
|
+
Author: massiron
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://massiron.com
|
|
8
|
+
Keywords: lsp,mcp,language-server,code-intelligence,massiron,llm-tools
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# lspmcp
|
|
19
|
+
|
|
20
|
+
**Language Server Protocol → Model Context Protocol bridge.**
|
|
21
|
+
Part of the [massiron](https://massiron.com) ecosystem.
|
|
22
|
+
|
|
23
|
+
`lspmcp` exposes any LSP server's code-intelligence — definitions, references,
|
|
24
|
+
diagnostics, hover, document symbols — to LLM agents over MCP. Your agent gets
|
|
25
|
+
real IDE-grade understanding of a codebase instead of guessing from text.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install lspmcp
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
> Early reserved release (`0.0.1`). Feature releases coming soon.
|
|
32
|
+
|
|
33
|
+
## Ecosystem
|
|
34
|
+
|
|
35
|
+
- **atlas** — deterministic code intelligence (0 LLM tokens)
|
|
36
|
+
- **deepstrain** — autonomous engineering agent
|
|
37
|
+
- **nodestone** — project cognition / continuity memory
|
|
38
|
+
- **adauto** — developer-marketing automation
|
|
39
|
+
- **lspmcp** — LSP → MCP bridge
|
|
40
|
+
|
|
41
|
+
© massiron. All rights reserved.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lspmcp
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "lspmcp"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "lspmcp — bridge any Language Server Protocol server to the Model Context Protocol, giving LLM agents real IDE-grade code intelligence. Part of the massiron ecosystem."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [{ name = "massiron" }]
|
|
13
|
+
keywords = ["lsp", "mcp", "language-server", "code-intelligence", "massiron", "llm-tools"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Software Development :: Libraries",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://massiron.com"
|
|
23
|
+
|
|
24
|
+
[project.scripts]
|
|
25
|
+
lspmcp = "lspmcp:main"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools.packages.find]
|
|
28
|
+
include = ["lspmcp*"]
|
lspmcp-0.0.1/setup.cfg
ADDED