@pilat/mcp-datalink 1.0.1 → 1.0.2
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.
- package/LICENSE +21 -0
- package/README.md +0 -28
- package/package.json +2 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vladimir Urushev
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/pilat/mcp-datalink/master/.github/logo.png" alt="MCP Datalink" width="120" />
|
|
3
|
-
</p>
|
|
4
|
-
|
|
5
1
|
<h1 align="center">MCP Datalink</h1>
|
|
6
2
|
|
|
7
3
|
<p align="center">
|
|
@@ -400,30 +396,6 @@ fix(security): enforce query validation
|
|
|
400
396
|
docs: update README
|
|
401
397
|
```
|
|
402
398
|
|
|
403
|
-
## Roadmap
|
|
404
|
-
|
|
405
|
-
### Databases
|
|
406
|
-
- [x] PostgreSQL support
|
|
407
|
-
- [x] MySQL support
|
|
408
|
-
- [x] SQLite support
|
|
409
|
-
- [ ] MongoDB support
|
|
410
|
-
- [ ] Redis support
|
|
411
|
-
|
|
412
|
-
### Security Hardening
|
|
413
|
-
- [ ] MySQL AST parser (replace regex-based parsing)
|
|
414
|
-
- [ ] SQLite AST parser
|
|
415
|
-
- [ ] Production error sanitization mode
|
|
416
|
-
- [ ] Timeout upper bound validation
|
|
417
|
-
- [ ] SQLite path allowlist
|
|
418
|
-
|
|
419
|
-
### Features
|
|
420
|
-
- [ ] Connection pooling
|
|
421
|
-
- [ ] Query history / audit log
|
|
422
|
-
- [ ] Transaction support
|
|
423
|
-
- [ ] Schema diff between databases
|
|
424
|
-
- [ ] SSH tunnel support
|
|
425
|
-
- [ ] Read replicas routing
|
|
426
|
-
|
|
427
399
|
## Links
|
|
428
400
|
|
|
429
401
|
- [GitHub Repository](https://github.com/pilat/mcp-datalink)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pilat/mcp-datalink",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP server for secure database access (PostgreSQL, MySQL, SQLite)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"claude-code",
|
|
30
30
|
"model-context-protocol"
|
|
31
31
|
],
|
|
32
|
-
"author": "
|
|
32
|
+
"author": "Vladimir Urushev",
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
35
|
"url": "https://github.com/pilat/mcp-datalink"
|