sequentum-mcp 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/CHANGELOG.md +17 -2
- package/dist/index.js +0 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.2] - 2026-01-20
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fixed executable permissions on `dist/index.js` causing "Permission denied" errors when running via npx
|
|
8
|
+
- Added `postbuild` script to automatically set executable permissions after build
|
|
9
|
+
|
|
10
|
+
## [1.0.1] - 2026-01-17
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Minor documentation updates
|
|
15
|
+
|
|
3
16
|
## [1.0.0] - 2026-01-16
|
|
4
17
|
|
|
5
18
|
### Added
|
|
@@ -43,5 +56,7 @@
|
|
|
43
56
|
|
|
44
57
|
---
|
|
45
58
|
|
|
46
|
-
[Unreleased]: https://github.com/sequentum
|
|
47
|
-
[1.0.
|
|
59
|
+
[Unreleased]: https://github.com/Sequentum/sequentum-mcp/compare/v1.0.2...HEAD
|
|
60
|
+
[1.0.2]: https://github.com/Sequentum/sequentum-mcp/compare/v1.0.1...v1.0.2
|
|
61
|
+
[1.0.1]: https://github.com/Sequentum/sequentum-mcp/compare/v1.0.0...v1.0.1
|
|
62
|
+
[1.0.0]: https://github.com/Sequentum/sequentum-mcp/releases/tag/v1.0.0
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sequentum-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP Server for Sequentum Web Scraping API - Enables AI assistants to interact with Sequentum agents",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc",
|
|
13
|
+
"postbuild": "chmod +x dist/index.js",
|
|
13
14
|
"start": "node dist/index.js",
|
|
14
15
|
"dev": "tsx src/index.ts",
|
|
15
16
|
"clean": "rimraf dist",
|