n8n-mcp 2.20.5 → 2.20.7
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/README.md +1 -1
- package/data/nodes.db +0 -0
- package/dist/mcp/server.js +7 -7
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/n8n-mcp)
|
|
6
6
|
[](https://codecov.io/gh/czlonkowski/n8n-mcp)
|
|
7
7
|
[](https://github.com/czlonkowski/n8n-mcp/actions)
|
|
8
|
-
[](https://github.com/n8n-io/n8n)
|
|
9
9
|
[](https://github.com/czlonkowski/n8n-mcp/pkgs/container/n8n-mcp)
|
|
10
10
|
[](https://railway.com/deploy/n8n-mcp?referralCode=n8n-mcp)
|
|
11
11
|
|
package/data/nodes.db
CHANGED
|
Binary file
|
package/dist/mcp/server.js
CHANGED
|
@@ -997,20 +997,20 @@ class N8NDocumentationMCPServer {
|
|
|
997
997
|
}
|
|
998
998
|
try {
|
|
999
999
|
const nodes = this.db.prepare(`
|
|
1000
|
-
SELECT
|
|
1000
|
+
SELECT
|
|
1001
1001
|
n.*,
|
|
1002
1002
|
rank
|
|
1003
1003
|
FROM nodes n
|
|
1004
1004
|
JOIN nodes_fts ON n.rowid = nodes_fts.rowid
|
|
1005
1005
|
WHERE nodes_fts MATCH ?
|
|
1006
|
-
ORDER BY
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
WHEN n.display_name
|
|
1010
|
-
WHEN n.
|
|
1011
|
-
WHEN n.node_type LIKE ? THEN 2
|
|
1006
|
+
ORDER BY
|
|
1007
|
+
CASE
|
|
1008
|
+
WHEN LOWER(n.display_name) = LOWER(?) THEN 0
|
|
1009
|
+
WHEN LOWER(n.display_name) LIKE LOWER(?) THEN 1
|
|
1010
|
+
WHEN LOWER(n.node_type) LIKE LOWER(?) THEN 2
|
|
1012
1011
|
ELSE 3
|
|
1013
1012
|
END,
|
|
1013
|
+
rank,
|
|
1014
1014
|
n.display_name
|
|
1015
1015
|
LIMIT ?
|
|
1016
1016
|
`).all(ftsQuery, cleanedQuery, `%${cleanedQuery}%`, `%${cleanedQuery}%`, limit);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-mcp",
|
|
3
|
-
"version": "2.20.
|
|
3
|
+
"version": "2.20.7",
|
|
4
4
|
"description": "Integration between n8n workflow automation and Model Context Protocol (MCP)",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@modelcontextprotocol/sdk": "^1.13.2",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"dotenv": "^16.5.0",
|
|
11
11
|
"lru-cache": "^11.2.1",
|
|
12
12
|
"sql.js": "^1.13.0",
|
|
13
|
+
"tslib": "^2.6.2",
|
|
13
14
|
"uuid": "^10.0.0",
|
|
14
15
|
"axios": "^1.7.7"
|
|
15
16
|
},
|