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.
- llmgraph_mcp-0.1.0/PKG-INFO +39 -0
- llmgraph_mcp-0.1.0/README.md +31 -0
- llmgraph_mcp-0.1.0/pyproject.toml +19 -0
- llmgraph_mcp-0.1.0/setup.cfg +4 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp/__init__.py +2 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp/server.py +5 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp.egg-info/PKG-INFO +39 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp.egg-info/SOURCES.txt +10 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp.egg-info/dependency_links.txt +1 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp.egg-info/entry_points.txt +2 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp.egg-info/requires.txt +1 -0
- llmgraph_mcp-0.1.0/src/llmgraph_mcp.egg-info/top_level.txt +1 -0
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
trishul-mcp>=0.1.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
llmgraph_mcp
|