coding-tools-mcp 0.1.4__tar.gz → 0.1.6__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.
@@ -1,9 +1,46 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.2
2
2
  Name: coding-tools-mcp
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: Workspace-confined coding tools exposed as an MCP server.
5
5
  Author: Coding Tools MCP Contributors
6
- License-Expression: LicenseRef-Coding-Tools-MCP-Source-Available
6
+ License: Coding Tools MCP Source-Available License v1.0
7
+
8
+ Copyright (c) 2026 Coding Tools MCP Contributors.
9
+ All rights reserved except as expressly granted below.
10
+
11
+ 1. Permitted Use
12
+
13
+ You may view, clone, build, run, and modify the Software solely for internal
14
+ evaluation, development, testing, and security review.
15
+
16
+ 2. Restrictions
17
+
18
+ Without prior written permission from the copyright holders, you may not:
19
+
20
+ - distribute, publish, sublicense, sell, lease, or otherwise transfer the
21
+ Software or modified versions of the Software;
22
+ - provide the Software or modified versions as a hosted, managed, or
23
+ software-as-a-service offering for third parties;
24
+ - use the Software or modified versions for production commercial purposes;
25
+ - remove or alter copyright, license, or attribution notices;
26
+ - use the project name, trademarks, or branding to imply endorsement.
27
+
28
+ 3. Contributions
29
+
30
+ Unless a separate written agreement says otherwise, any contribution submitted
31
+ to this project may be used by the copyright holders under this license and
32
+ under any future license chosen by the copyright holders.
33
+
34
+ 4. No Warranty
35
+
36
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
37
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
39
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
40
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM,
41
+ OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
42
+ SOFTWARE.
43
+
7
44
  Project-URL: Homepage, https://github.com/xyTom/coding-tools-mcp
8
45
  Project-URL: Documentation, https://github.com/xyTom/coding-tools-mcp/tree/main/docs
9
46
  Project-URL: Source, https://github.com/xyTom/coding-tools-mcp
@@ -11,13 +48,13 @@ Project-URL: Issues, https://github.com/xyTom/coding-tools-mcp/issues
11
48
  Requires-Python: >=3.11
12
49
  Description-Content-Type: text/markdown
13
50
  License-File: LICENSE
51
+ Requires-Dist: PyJWT>=2.8
14
52
  Provides-Extra: dev
15
53
  Requires-Dist: mypy<2.2,>=2.1; extra == "dev"
16
54
  Requires-Dist: ruff<0.16,>=0.15; extra == "dev"
17
55
  Requires-Dist: typing_extensions>=4.12; extra == "dev"
18
56
  Provides-Extra: image
19
57
  Requires-Dist: Pillow>=10.0; extra == "image"
20
- Dynamic: license-file
21
58
 
22
59
  # Coding Tools MCP
23
60
 
@@ -183,7 +220,7 @@ scripts/tunnel.sh ngrok /path/to/repo
183
220
  scripts/tunnel.sh devtunnel /path/to/repo
184
221
  ```
185
222
 
186
- For clients that support custom headers, use bearer-token auth with `Authorization: Bearer <token>`. Clients that cannot send custom bearer headers should use anonymous `read-only` mode only for local/testing tunnels, or be placed behind an external auth proxy for production use.
223
+ For clients that support custom headers, use bearer-token auth with `Authorization: Bearer <token>`. For MCP clients that speak OAuth 2.1 Authorization Code + PKCE, use `CODING_TOOLS_MCP_AUTH_MODE=oauth` with `scripts/tunnel.sh` (or `scripts/install.sh --auth-mode oauth`). The server can infer its OAuth issuer from the tunnel request URL, so one-shot tunnels like cloudflared work without setting `CODING_TOOLS_MCP_SERVER_URL` before startup; set it only when you want to pin a stable issuer. The script prints a generated OAuth password, accepts any non-empty client_id by default, and lets you opt into `CODING_TOOLS_MCP_OAUTH_CLIENT_ID`/`CODING_TOOLS_MCP_OAUTH_CLIENT_SECRET` only when you need to lock down a confidential client. Clients that cannot send custom bearer headers and do not speak OAuth should use anonymous `read-only` mode only for local/testing tunnels, or be placed behind an external auth proxy for production use.
187
224
 
188
225
  See [docs/remote-mcp.md](docs/remote-mcp.md) for the exact modes and security notes.
189
226
 
@@ -162,7 +162,7 @@ scripts/tunnel.sh ngrok /path/to/repo
162
162
  scripts/tunnel.sh devtunnel /path/to/repo
163
163
  ```
164
164
 
165
- For clients that support custom headers, use bearer-token auth with `Authorization: Bearer <token>`. Clients that cannot send custom bearer headers should use anonymous `read-only` mode only for local/testing tunnels, or be placed behind an external auth proxy for production use.
165
+ For clients that support custom headers, use bearer-token auth with `Authorization: Bearer <token>`. For MCP clients that speak OAuth 2.1 Authorization Code + PKCE, use `CODING_TOOLS_MCP_AUTH_MODE=oauth` with `scripts/tunnel.sh` (or `scripts/install.sh --auth-mode oauth`). The server can infer its OAuth issuer from the tunnel request URL, so one-shot tunnels like cloudflared work without setting `CODING_TOOLS_MCP_SERVER_URL` before startup; set it only when you want to pin a stable issuer. The script prints a generated OAuth password, accepts any non-empty client_id by default, and lets you opt into `CODING_TOOLS_MCP_OAUTH_CLIENT_ID`/`CODING_TOOLS_MCP_OAUTH_CLIENT_SECRET` only when you need to lock down a confidential client. Clients that cannot send custom bearer headers and do not speak OAuth should use anonymous `read-only` mode only for local/testing tunnels, or be placed behind an external auth proxy for production use.
166
166
 
167
167
  See [docs/remote-mcp.md](docs/remote-mcp.md) for the exact modes and security notes.
168
168
 
@@ -1,3 +1,3 @@
1
1
  """Coding Tools MCP server package."""
2
2
 
3
- __version__ = "0.1.4"
3
+ __version__ = "0.1.6"