thunderbird-mcp: init at 0.4.0 (#506049)

This commit is contained in:
Pol Dellaiera
2026-04-03 18:33:09 +00:00
committed by GitHub
2 changed files with 55 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"name": "thunderbird-mcp",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "thunderbird-mcp",
"version": "0.1.0",
"license": "MIT",
"bin": {
"thunderbird-mcp": "mcp-bridge.cjs"
},
"engines": {
"node": ">=18.0.0"
}
}
}
}
@@ -0,0 +1,36 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage (finalAttrs: {
pname = "thunderbird-mcp";
version = "0.4.0";
src = fetchFromGitHub {
owner = "TKasperczyk";
repo = "thunderbird-mcp";
tag = "v${finalAttrs.version}";
hash = "sha256-+m54jF39SoViHxDI18ewtVjeVUdRximJ6Ozcv1HVdiU=";
};
postPatch = ''
cp ${./package-lock.json} package-lock.json
'';
preInstall = "mkdir node_modules/";
forceEmptyCache = true;
dontNpmBuild = true;
npmDepsHash = "sha256-LbEnmABmAoTCTPNNbocl+n2TtFC3FOFwwTnyATxvM3k=";
meta = {
description = "MCP server for Thunderbird - enables AI assistants to access email, contacts, and calendars";
homepage = "https://github.com/TKasperczyk/thunderbird-mcp";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
mainProgram = "thunderbird-mcp";
platforms = lib.platforms.all;
};
})