llmgraph-mcp 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,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: llmgraph-mcp
3
+ Version: 0.1.0
4
+ Summary: Official Model Context Protocol (MCP) server for LLMGRAPH (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-mcp
10
+
11
+ Official Model Context Protocol (MCP) server for [LLMGRAPH](https://llmgraph.in).
12
+
13
+ Provides persistent, repository-scale semantic code intelligence (callers, blast radius, execution paths) for AI coding agents like Claude Code, Cursor, and Windsurf.
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ pip install llmgraph-mcp
19
+ ```
20
+
21
+ ## Configuration
22
+
23
+ Add to your MCP settings:
24
+
25
+ ```json
26
+ {
27
+ "mcpServers": {
28
+ "llmgraph": {
29
+ "command": "llmgraph-mcp",
30
+ "env": {
31
+ "LLMGRAPH_API_KEY": "llmg_live_...",
32
+ "LLMGRAPH_API_URL": "https://api.llmgraph.in/v1"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ ```
38
+
39
+ Developed by Brainfoods Studio.
@@ -0,0 +1,31 @@
1
+ # llmgraph-mcp
2
+
3
+ Official Model Context Protocol (MCP) server for [LLMGRAPH](https://llmgraph.in).
4
+
5
+ Provides persistent, repository-scale semantic code intelligence (callers, blast radius, execution paths) for AI coding agents like Claude Code, Cursor, and Windsurf.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install llmgraph-mcp
11
+ ```
12
+
13
+ ## Configuration
14
+
15
+ Add to your MCP settings:
16
+
17
+ ```json
18
+ {
19
+ "mcpServers": {
20
+ "llmgraph": {
21
+ "command": "llmgraph-mcp",
22
+ "env": {
23
+ "LLMGRAPH_API_KEY": "llmg_live_...",
24
+ "LLMGRAPH_API_URL": "https://api.llmgraph.in/v1"
25
+ }
26
+ }
27
+ }
28
+ }
29
+ ```
30
+
31
+ Developed by Brainfoods Studio.
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "llmgraph-mcp"
7
+ version = "0.1.0"
8
+ description = "Official Model Context Protocol (MCP) server for LLMGRAPH (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-mcp = "llmgraph_mcp.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-mcp: Official MCP client package for LLMGRAPH (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,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: llmgraph-mcp
3
+ Version: 0.1.0
4
+ Summary: Official Model Context Protocol (MCP) server for LLMGRAPH (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-mcp
10
+
11
+ Official Model Context Protocol (MCP) server for [LLMGRAPH](https://llmgraph.in).
12
+
13
+ Provides persistent, repository-scale semantic code intelligence (callers, blast radius, execution paths) for AI coding agents like Claude Code, Cursor, and Windsurf.
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ pip install llmgraph-mcp
19
+ ```
20
+
21
+ ## Configuration
22
+
23
+ Add to your MCP settings:
24
+
25
+ ```json
26
+ {
27
+ "mcpServers": {
28
+ "llmgraph": {
29
+ "command": "llmgraph-mcp",
30
+ "env": {
31
+ "LLMGRAPH_API_KEY": "llmg_live_...",
32
+ "LLMGRAPH_API_URL": "https://api.llmgraph.in/v1"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ ```
38
+
39
+ Developed by Brainfoods Studio.
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/llmgraph_mcp/__init__.py
4
+ src/llmgraph_mcp/server.py
5
+ src/llmgraph_mcp.egg-info/PKG-INFO
6
+ src/llmgraph_mcp.egg-info/SOURCES.txt
7
+ src/llmgraph_mcp.egg-info/dependency_links.txt
8
+ src/llmgraph_mcp.egg-info/entry_points.txt
9
+ src/llmgraph_mcp.egg-info/requires.txt
10
+ src/llmgraph_mcp.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ llmgraph-mcp = llmgraph_mcp.server:main
@@ -0,0 +1 @@
1
+ trishul-mcp>=0.1.0
@@ -0,0 +1 @@
1
+ llmgraph_mcp