coding-tools-mcp 0.1.3__tar.gz → 0.1.4__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.
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/PKG-INFO +32 -6
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/README.md +27 -1
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp/__init__.py +1 -1
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/PKG-INFO +32 -6
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/docs/profile-v0.1.md +1 -1
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/pyproject.toml +5 -5
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/LICENSE +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp/__main__.py +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp/landlock_exec.py +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp/server.py +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/SOURCES.txt +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/dependency_links.txt +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/entry_points.txt +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/requires.txt +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/top_level.txt +0 -0
- {coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/setup.cfg +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: coding-tools-mcp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Workspace-confined coding tools exposed as an MCP server.
|
|
5
5
|
Author: Coding Tools MCP Contributors
|
|
6
6
|
License-Expression: LicenseRef-Coding-Tools-MCP-Source-Available
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Documentation, https://github.com/
|
|
9
|
-
Project-URL: Source, https://github.com/
|
|
10
|
-
Project-URL: Issues, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/xyTom/coding-tools-mcp
|
|
8
|
+
Project-URL: Documentation, https://github.com/xyTom/coding-tools-mcp/tree/main/docs
|
|
9
|
+
Project-URL: Source, https://github.com/xyTom/coding-tools-mcp
|
|
10
|
+
Project-URL: Issues, https://github.com/xyTom/coding-tools-mcp/issues
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
@@ -47,7 +47,33 @@ It is not a prompt wrapper. It does not expose external agent accounts, memory,
|
|
|
47
47
|
|
|
48
48
|
## Quickstart
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
Install the published command from PyPI:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh | bash
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Install and start local Streamable HTTP against a workspace:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh \
|
|
60
|
+
| bash -s -- --start --workspace /path/to/repo
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Install and expose a read-only bearer-token tunnel:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh \
|
|
67
|
+
| bash -s -- --tunnel cloudflared --auto-install-tunnel --workspace /path/to/repo
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Or, from this checkout:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
scripts/install.sh
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Run the published package without a persistent install:
|
|
51
77
|
|
|
52
78
|
```bash
|
|
53
79
|
uvx coding-tools-mcp --workspace .
|
|
@@ -26,7 +26,33 @@ It is not a prompt wrapper. It does not expose external agent accounts, memory,
|
|
|
26
26
|
|
|
27
27
|
## Quickstart
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
Install the published command from PyPI:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh | bash
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Install and start local Streamable HTTP against a workspace:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh \
|
|
39
|
+
| bash -s -- --start --workspace /path/to/repo
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Install and expose a read-only bearer-token tunnel:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh \
|
|
46
|
+
| bash -s -- --tunnel cloudflared --auto-install-tunnel --workspace /path/to/repo
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Or, from this checkout:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
scripts/install.sh
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Run the published package without a persistent install:
|
|
30
56
|
|
|
31
57
|
```bash
|
|
32
58
|
uvx coding-tools-mcp --workspace .
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: coding-tools-mcp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Workspace-confined coding tools exposed as an MCP server.
|
|
5
5
|
Author: Coding Tools MCP Contributors
|
|
6
6
|
License-Expression: LicenseRef-Coding-Tools-MCP-Source-Available
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Documentation, https://github.com/
|
|
9
|
-
Project-URL: Source, https://github.com/
|
|
10
|
-
Project-URL: Issues, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/xyTom/coding-tools-mcp
|
|
8
|
+
Project-URL: Documentation, https://github.com/xyTom/coding-tools-mcp/tree/main/docs
|
|
9
|
+
Project-URL: Source, https://github.com/xyTom/coding-tools-mcp
|
|
10
|
+
Project-URL: Issues, https://github.com/xyTom/coding-tools-mcp/issues
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
@@ -47,7 +47,33 @@ It is not a prompt wrapper. It does not expose external agent accounts, memory,
|
|
|
47
47
|
|
|
48
48
|
## Quickstart
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
Install the published command from PyPI:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh | bash
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Install and start local Streamable HTTP against a workspace:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh \
|
|
60
|
+
| bash -s -- --start --workspace /path/to/repo
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Install and expose a read-only bearer-token tunnel:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
curl -fsSL https://raw.githubusercontent.com/xyTom/coding-tools-mcp/main/scripts/install.sh \
|
|
67
|
+
| bash -s -- --tunnel cloudflared --auto-install-tunnel --workspace /path/to/repo
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Or, from this checkout:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
scripts/install.sh
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Run the published package without a persistent install:
|
|
51
77
|
|
|
52
78
|
```bash
|
|
53
79
|
uvx coding-tools-mcp --workspace .
|
|
@@ -54,7 +54,7 @@ If a client requests a newer date-based protocol revision, the server negotiates
|
|
|
54
54
|
"serverInfo": {
|
|
55
55
|
"name": "coding-tools-mcp",
|
|
56
56
|
"title": "Coding Tools MCP",
|
|
57
|
-
"version": "0.1.
|
|
57
|
+
"version": "0.1.4"
|
|
58
58
|
},
|
|
59
59
|
"instructions": "Use these tools only for local coding operations inside the configured workspace."
|
|
60
60
|
}
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "coding-tools-mcp"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.4"
|
|
8
8
|
description = "Workspace-confined coding tools exposed as an MCP server."
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
readme = "README.md"
|
|
@@ -12,10 +12,10 @@ license = "LicenseRef-Coding-Tools-MCP-Source-Available"
|
|
|
12
12
|
authors = [{ name = "Coding Tools MCP Contributors" }]
|
|
13
13
|
|
|
14
14
|
[project.urls]
|
|
15
|
-
Homepage = "https://github.com/
|
|
16
|
-
Documentation = "https://github.com/
|
|
17
|
-
Source = "https://github.com/
|
|
18
|
-
Issues = "https://github.com/
|
|
15
|
+
Homepage = "https://github.com/xyTom/coding-tools-mcp"
|
|
16
|
+
Documentation = "https://github.com/xyTom/coding-tools-mcp/tree/main/docs"
|
|
17
|
+
Source = "https://github.com/xyTom/coding-tools-mcp"
|
|
18
|
+
Issues = "https://github.com/xyTom/coding-tools-mcp/issues"
|
|
19
19
|
|
|
20
20
|
[project.optional-dependencies]
|
|
21
21
|
dev = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{coding_tools_mcp-0.1.3 → coding_tools_mcp-0.1.4}/coding_tools_mcp.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|