@respond-io/mcp-server 1.0.0 → 1.0.1
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 +8 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.1](https://github.com/respond-io/mcp-server/compare/v1.0.0...v1.0.1) (2026-02-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Test commit for checking npm publish release flow ([7dd550b](https://github.com/respond-io/mcp-server/commit/7dd550b9a13c14474cf4b1aa1eaf3e8e833ba625))
|
|
9
|
+
* Test commit for checking npm publish release flow ([a025262](https://github.com/respond-io/mcp-server/commit/a025262ca6478cca8a5c8637f1e71c7016c80660))
|
|
10
|
+
|
|
3
11
|
## [1.0.0](https://github.com/respond-io/mcp-server/compare/v0.1.0...v1.0.0) (2026-02-11)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@respond-io/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Model Context Protocol server for Respond.io API integration with STDIO and HTTP/SSE support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"docker:compose:down": "docker-compose down",
|
|
33
33
|
"docker:compose:logs": "docker-compose logs -f",
|
|
34
34
|
"health-check": "curl -f http://localhost:3000/health || exit 1",
|
|
35
|
-
"validate": "npm run lint && npm run type-check",
|
|
35
|
+
"validate": "npm run lint && npm run type-check && npm run test:coverage",
|
|
36
36
|
"prepublishOnly": "npm run validate && npm run build && cd dist",
|
|
37
37
|
"prepack": "npm run build",
|
|
38
38
|
"clean": "rm -rf dist coverage",
|