n8n-mcp
All checks were successful
CI / Build Individual Packages (academic-search-mcp-server) (push) Successful in 57s
CI / Flake Check (push) Successful in 1m23s
CI / Build Individual Packages (duckduckgo-mcp-server) (push) Successful in 51s
CI / Build Individual Packages (manim-mcp-server) (push) Successful in 1m7s
CI / Build Individual Packages (kindly-web-search-mcp-server) (push) Successful in 1m32s
CI / Build Individual Packages (pdf-reader-mcp) (push) Successful in 1m6s
CI / Build Individual Packages (zotero-mcp) (push) Successful in 1m26s
CI / Build Individual Packages (rust-research-mcp) (push) Successful in 6m41s
All checks were successful
CI / Build Individual Packages (academic-search-mcp-server) (push) Successful in 57s
CI / Flake Check (push) Successful in 1m23s
CI / Build Individual Packages (duckduckgo-mcp-server) (push) Successful in 51s
CI / Build Individual Packages (manim-mcp-server) (push) Successful in 1m7s
CI / Build Individual Packages (kindly-web-search-mcp-server) (push) Successful in 1m32s
CI / Build Individual Packages (pdf-reader-mcp) (push) Successful in 1m6s
CI / Build Individual Packages (zotero-mcp) (push) Successful in 1m26s
CI / Build Individual Packages (rust-research-mcp) (push) Successful in 6m41s
This commit is contained in:
19
README.md
19
README.md
@@ -6,15 +6,16 @@ This repository provides Nix derivations for MCP (Model Context Protocol) server
|
|||||||
|
|
||||||
## Available Packages
|
## Available Packages
|
||||||
|
|
||||||
| Package | Description | Language |
|
| Package | Description | Language |
|
||||||
|---------------------------------|------------------------------------------------------------------|------------|
|
|------------------------------|---------------------------------------------------------------|------------|
|
||||||
| academic-search-mcp-server | Search academic papers via Semantic Scholar and Crossref | Python |
|
| academic-search-mcp-server | Search academic papers via Semantic Scholar and Crossref | Python |
|
||||||
| duckduckgo-mcp-server | Web search and content fetching via DuckDuckGo | Python |
|
| duckduckgo-mcp-server | Web search and content fetching via DuckDuckGo | Python |
|
||||||
| kindly-web-search-mcp-server | Web search + content retrieval via Serper, Tavily, or SearXNG | Python |
|
| kindly-web-search-mcp-server | Web search + content retrieval via Serper, Tavily, or SearXNG | Python |
|
||||||
| manim-mcp-server | Execute Manim animation code and return videos | Python |
|
| manim-mcp-server | Execute Manim animation code and return videos | Python |
|
||||||
| pdf-reader-mcp | Production‑ready PDF processing with parallel processing | TypeScript |
|
| n8n-mcp | AI access to n8n node docs and workflow management | TypeScript |
|
||||||
| rust-research-mcp | Accumulate and organize academic knowledge | Rust |
|
| pdf-reader-mcp | Production‑ready PDF processing with parallel processing | TypeScript |
|
||||||
| zotero-mcp | Connect Zotero research library with AI assistants | Python |
|
| rust-research-mcp | Accumulate and organize academic knowledge | Rust |
|
||||||
|
| zotero-mcp | Connect Zotero research library with AI assistants | Python |
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|||||||
12
flake.lock
generated
12
flake.lock
generated
@@ -82,17 +82,17 @@
|
|||||||
"nixpkgs": "nixpkgs_2"
|
"nixpkgs": "nixpkgs_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1770110471,
|
"lastModified": 1770246631,
|
||||||
"narHash": "sha256-oAbwoCzhq/skEKzaPTtzCh1Eix2fwfsE2aJmpJZZhx8=",
|
"narHash": "sha256-a44ePXknnnWC7B3r8D4XgvypAdJ0hSfkBXuvRC/3j7M=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "9cfc57d6a605466ed9a359abcaee86b4ec9f62e0",
|
"rev": "fc658b4112f5d924a038d5a3699eae3917371654",
|
||||||
"revCount": 2,
|
"revCount": 6,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "ssh://gitea@gitea.bueso.eu/luis/jailed-agents"
|
"url": "https://gitea@gitea.bueso.eu/luis/jailed-agents"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "ssh://gitea@gitea.bueso.eu/luis/jailed-agents"
|
"url": "https://gitea@gitea.bueso.eu/luis/jailed-agents"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"llm-agents": {
|
"llm-agents": {
|
||||||
|
|||||||
@@ -46,6 +46,17 @@
|
|||||||
"type": "local",
|
"type": "local",
|
||||||
"command": ["duckduckgo-mcp-server"],
|
"command": ["duckduckgo-mcp-server"],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
"n8n-mcp": {
|
||||||
|
"type": "local",
|
||||||
|
"command": ["n8n-mcp"],
|
||||||
|
"enabled": true,
|
||||||
|
"environment": {
|
||||||
|
"MCP_MODE": "stdio",
|
||||||
|
"LOG_LEVEL": "error",
|
||||||
|
"DISABLE_CONSOLE_OUTPUT": "true",
|
||||||
|
"N8N_MCP_TELEMETRY_DISABLED": "true"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,5 +18,6 @@
|
|||||||
kindly-web-search-mcp-server = pkgs.callPackage ./kindly-web-search-mcp-server/package.nix { };
|
kindly-web-search-mcp-server = pkgs.callPackage ./kindly-web-search-mcp-server/package.nix { };
|
||||||
rust-research-mcp = pkgs.callPackage ./rust-research-mcp/package.nix { };
|
rust-research-mcp = pkgs.callPackage ./rust-research-mcp/package.nix { };
|
||||||
duckduckgo-mcp-server = pkgs.callPackage ./duckduckgo-mcp-server/package.nix { };
|
duckduckgo-mcp-server = pkgs.callPackage ./duckduckgo-mcp-server/package.nix { };
|
||||||
|
n8n-mcp = pkgs.callPackage ./n8n-mcp/package.nix { };
|
||||||
# example-mcp-server = pkgs.callPackage ./example-mcp-server/package.nix { };
|
# example-mcp-server = pkgs.callPackage ./example-mcp-server/package.nix { };
|
||||||
}
|
}
|
||||||
|
|||||||
1855
packages/n8n-mcp/package-lock.json
generated
Normal file
1855
packages/n8n-mcp/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
46
packages/n8n-mcp/package.nix
Normal file
46
packages/n8n-mcp/package.nix
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildNpmPackage,
|
||||||
|
fetchzip,
|
||||||
|
makeWrapper,
|
||||||
|
python3,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildNpmPackage rec {
|
||||||
|
pname = "n8n-mcp";
|
||||||
|
version = "2.35.1";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://registry.npmjs.org/${pname}/-/${pname}-${version}.tgz";
|
||||||
|
hash = "sha256-CWHH1ACcMCWkLahV5fTO0/k5OtfVUKNldHseDP8EfEk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
npmDepsHash = "sha256-x9ziuYxZPQMqkB2HA4HmGkpge7NGp9t4t4aNTi0XXn4=";
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
cp ${./package-lock.json} package-lock.json
|
||||||
|
'';
|
||||||
|
|
||||||
|
# dist/ and data/ are already built in the npm tarball
|
||||||
|
dontNpmBuild = true;
|
||||||
|
|
||||||
|
# better-sqlite3 needs python3 for node-gyp
|
||||||
|
nativeBuildInputs = [
|
||||||
|
makeWrapper
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
|
||||||
|
# Disable telemetry by default in Nix builds
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/${pname} \
|
||||||
|
--set N8N_MCP_TELEMETRY_DISABLED "true"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "MCP server providing AI assistants with access to n8n node documentation and workflow management";
|
||||||
|
homepage = "https://github.com/czlonkowski/n8n-mcp";
|
||||||
|
license = licenses.mit;
|
||||||
|
mainProgram = pname;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user