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.
@@ -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,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,2 @@
1
+ """llmgraph-in: Official MCP client package for llmgraph.in (powered by trishul-mcp)."""
2
+ __version__ = "0.1.0"
@@ -0,0 +1,5 @@
1
+ """Entry point wrapper delegating to trishul_mcp.server."""
2
+ from trishul_mcp.server import main, mcp
3
+
4
+ if __name__ == "__main__":
5
+ main()
@@ -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,2 @@
1
+ [console_scripts]
2
+ llmgraph-in = llmgraph_in.server:main
@@ -0,0 +1 @@
1
+ trishul-mcp>=0.1.0
@@ -0,0 +1 @@
1
+ llmgraph_in