@path58/p58-n8n 0.2.0 → 0.2.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/dist/mcp/server.bundle.cjs +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.1] - 2026-03-09
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Server startup message now correctly reports v0.2.1 (was showing v0.1.0)
|
|
13
|
+
- Server startup now logs tool count: `p58-n8n v0.2.1 running on stdio (34 tools registered)`
|
|
14
|
+
|
|
8
15
|
## [0.2.0] - 2026-03-08
|
|
9
16
|
|
|
10
17
|
### Added
|
|
@@ -83,6 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
83
90
|
- npm package published as `@path58/p58-n8n`
|
|
84
91
|
- ESM module support with shebang for direct `npx` execution
|
|
85
92
|
|
|
93
|
+
[0.2.1]: https://github.com/tsvika58/n8n-workflow-validator/releases/tag/v0.2.1
|
|
86
94
|
[0.2.0]: https://github.com/tsvika58/n8n-workflow-validator/releases/tag/v0.2.0
|
|
87
95
|
[0.1.1]: https://github.com/tsvika58/n8n-workflow-validator/releases/tag/v0.1.1
|
|
88
96
|
[0.1.0]: https://github.com/tsvika58/n8n-workflow-validator/releases/tag/v0.1.0
|
|
@@ -18421,7 +18421,7 @@ var import_types22 = require("@modelcontextprotocol/sdk/types.js");
|
|
|
18421
18421
|
var config = {
|
|
18422
18422
|
// Server identity
|
|
18423
18423
|
SERVER_NAME: "p58-n8n",
|
|
18424
|
-
SERVER_VERSION: "0.1
|
|
18424
|
+
SERVER_VERSION: "0.2.1",
|
|
18425
18425
|
// Database configuration (from environment)
|
|
18426
18426
|
SUPABASE_URL: process.env.SUPABASE_URL,
|
|
18427
18427
|
SUPABASE_KEY: process.env.SUPABASE_KEY,
|
|
@@ -44395,7 +44395,8 @@ server.setRequestHandler(import_types22.CallToolRequestSchema, async (request) =
|
|
|
44395
44395
|
async function main() {
|
|
44396
44396
|
const transport = new import_stdio.StdioServerTransport();
|
|
44397
44397
|
await server.connect(transport);
|
|
44398
|
-
|
|
44398
|
+
const toolCount = getRegisteredTools().length;
|
|
44399
|
+
console.error(`${config.SERVER_NAME} v${config.SERVER_VERSION} running on stdio (${toolCount} tools registered)`);
|
|
44399
44400
|
registerShutdownHandlers(config.SERVER_NAME);
|
|
44400
44401
|
warmCredentialCache().catch((e) => console.error("Credential cache warm-up failed:", e));
|
|
44401
44402
|
}
|