Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions Formula/n/n8n-mcp.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
class N8nMcp < Formula
desc "MCP for Claude Desktop, Claude Code, Windsurf, Cursor to build n8n workflows"
homepage "https://www.n8n-mcp.com/"
url "https://registry.npmjs.org/n8n-mcp/-/n8n-mcp-2.15.6.tgz"
sha256 "fb188fcf94c7edd72201f7323493ace693202ae2cd61265e9410e896096996dc"
url "https://registry.npmjs.org/n8n-mcp/-/n8n-mcp-2.16.1.tgz"
sha256 "873d5ba3f2a597ffa9c461675bbb3838e6a6f60425bab3fd310ad8bd5a127fd8"
license "MIT"

bottle do
sha256 cellar: :any_skip_relocation, arm64_tahoe: "065171c9c8adba817d6e1f6e99814d030e354255a426ad0c614c664fca65e794"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "279a5b78961cbe7ad3f32b3aa2a0b4decc57dd7d7bea7824284466655a1e6892"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "00130919f10394807824253473c79824bb7d31ed7b04962efac4f6380923e457"
sha256 cellar: :any_skip_relocation, sonoma: "ab08891065a46fcb9de46309d010cad86b51639cfcf5a92fc383c7d40239da0c"
sha256 cellar: :any_skip_relocation, arm64_linux: "06cbc54cfadf932371dc08325b6599f8df4b720ac91c2ce177fa1e494f02fe49"
sha256 cellar: :any_skip_relocation, x86_64_linux: "7e158fc2f8faf4eb6696bdff1515ba4778d5fa2ac04d43906026fe6ffe1da804"
sha256 cellar: :any_skip_relocation, arm64_tahoe: "fdab669e2572ab370c01e67539122cda9f2c59c05cbf14fc16ece15857549571"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "dab01d0229c439d8693eeedd106b40a96c546e97a44d6d6c2d1d91c481ea3893"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "66ffe5a5e2a60deadabe3de419802e10272793cb937de54c8ae7131e729c12e8"
sha256 cellar: :any_skip_relocation, sonoma: "3543260893263258bed3a4b67d05f1752cd0c3f126592da07756a4d26802659c"
sha256 cellar: :any_skip_relocation, arm64_linux: "20f4b243e1041c4d3899f45cb71106eb0c5df94121a3ba603dddec91e9e9c3cc"
sha256 cellar: :any_skip_relocation, x86_64_linux: "6861b52bb9eb63f1e40a93ad229c987806fe4a93571d7342a48880a59f95da50"
end

depends_on "node"
Expand All @@ -28,7 +28,8 @@ def install
output_log = testpath/"output.log"
pid = spawn bin/"n8n-mcp", testpath, [:out, :err] => output_log.to_s
sleep 10
assert_match "n8n Documentation MCP Server running on stdio transpor", output_log.read
sleep 5 if OS.mac? && Hardware::CPU.intel?
assert_match "n8n Documentation MCP Server running on stdio transport", output_log.read
ensure
Process.kill("TERM", pid)
Process.wait(pid)
Expand Down
Loading