llmgraph-in 0.1.0__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.
- llmgraph_in-0.1.0/PKG-INFO +35 -0
- llmgraph_in-0.1.0/README.md +27 -0
- llmgraph_in-0.1.0/pyproject.toml +19 -0
- llmgraph_in-0.1.0/setup.cfg +4 -0
- llmgraph_in-0.1.0/src/llmgraph_in/__init__.py +2 -0
- llmgraph_in-0.1.0/src/llmgraph_in/server.py +5 -0
- llmgraph_in-0.1.0/src/llmgraph_in.egg-info/PKG-INFO +35 -0
- llmgraph_in-0.1.0/src/llmgraph_in.egg-info/SOURCES.txt +10 -0
- llmgraph_in-0.1.0/src/llmgraph_in.egg-info/dependency_links.txt +1 -0
- llmgraph_in-0.1.0/src/llmgraph_in.egg-info/entry_points.txt +2 -0
- llmgraph_in-0.1.0/src/llmgraph_in.egg-info/requires.txt +1 -0
- llmgraph_in-0.1.0/src/llmgraph_in.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: llmgraph-in
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official Model Context Protocol (MCP) server for llmgraph.in (powered by Trishul)
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: trishul-mcp>=0.1.0
|
|
8
|
+
|
|
9
|
+
# llmgraph-in
|
|
10
|
+
|
|
11
|
+
Official Model Context Protocol (MCP) server for [LLMGRAPH](https://llmgraph.in).
|
|
12
|
+
|
|
13
|
+
This package is powered by the [`trishul-mcp`](https://pypi.org/project/trishul-mcp/) engine, providing deterministic, repository-scale semantic code intelligence to AI coding assistants (Cursor, Claude Code, Windsurf).
|
|
14
|
+
|
|
15
|
+
## Quickstart
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install llmgraph-in
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Configure your MCP client:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"mcpServers": {
|
|
26
|
+
"llmgraph": {
|
|
27
|
+
"command": "llmgraph-in",
|
|
28
|
+
"env": {
|
|
29
|
+
"TRISHUL_API_KEY": "llmg_live_...",
|
|
30
|
+
"TRISHUL_API_URL": "https://api.llmgraph.in/v1"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
```
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# llmgraph-in
|
|
2
|
+
|
|
3
|
+
Official Model Context Protocol (MCP) server for [LLMGRAPH](https://llmgraph.in).
|
|
4
|
+
|
|
5
|
+
This package is powered by the [`trishul-mcp`](https://pypi.org/project/trishul-mcp/) engine, providing deterministic, repository-scale semantic code intelligence to AI coding assistants (Cursor, Claude Code, Windsurf).
|
|
6
|
+
|
|
7
|
+
## Quickstart
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install llmgraph-in
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Configure your MCP client:
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"mcpServers": {
|
|
18
|
+
"llmgraph": {
|
|
19
|
+
"command": "llmgraph-in",
|
|
20
|
+
"env": {
|
|
21
|
+
"TRISHUL_API_KEY": "llmg_live_...",
|
|
22
|
+
"TRISHUL_API_URL": "https://api.llmgraph.in/v1"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "llmgraph-in"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Official Model Context Protocol (MCP) server for llmgraph.in (powered by Trishul)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"trishul-mcp>=0.1.0",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[project.scripts]
|
|
16
|
+
llmgraph-in = "llmgraph_in.server:main"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools.packages.find]
|
|
19
|
+
where = ["src"]
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: llmgraph-in
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official Model Context Protocol (MCP) server for llmgraph.in (powered by Trishul)
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: trishul-mcp>=0.1.0
|
|
8
|
+
|
|
9
|
+
# llmgraph-in
|
|
10
|
+
|
|
11
|
+
Official Model Context Protocol (MCP) server for [LLMGRAPH](https://llmgraph.in).
|
|
12
|
+
|
|
13
|
+
This package is powered by the [`trishul-mcp`](https://pypi.org/project/trishul-mcp/) engine, providing deterministic, repository-scale semantic code intelligence to AI coding assistants (Cursor, Claude Code, Windsurf).
|
|
14
|
+
|
|
15
|
+
## Quickstart
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install llmgraph-in
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Configure your MCP client:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"mcpServers": {
|
|
26
|
+
"llmgraph": {
|
|
27
|
+
"command": "llmgraph-in",
|
|
28
|
+
"env": {
|
|
29
|
+
"TRISHUL_API_KEY": "llmg_live_...",
|
|
30
|
+
"TRISHUL_API_URL": "https://api.llmgraph.in/v1"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/llmgraph_in/__init__.py
|
|
4
|
+
src/llmgraph_in/server.py
|
|
5
|
+
src/llmgraph_in.egg-info/PKG-INFO
|
|
6
|
+
src/llmgraph_in.egg-info/SOURCES.txt
|
|
7
|
+
src/llmgraph_in.egg-info/dependency_links.txt
|
|
8
|
+
src/llmgraph_in.egg-info/entry_points.txt
|
|
9
|
+
src/llmgraph_in.egg-info/requires.txt
|
|
10
|
+
src/llmgraph_in.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
trishul-mcp>=0.1.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
llmgraph_in
|