Skip to content

Commit 6d51108

Browse files
perplexity-mcp: init at 0-unstable-2025-12-19 (#473321)
2 parents bdd828f + 5b02a7b commit 6d51108

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
lib,
3+
buildNpmPackage,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
8+
buildNpmPackage (finalAttrs: {
9+
pname = "perplexity-mcp";
10+
version = "0-unstable-2025-12-19";
11+
12+
src = fetchFromGitHub {
13+
owner = "perplexityai";
14+
repo = "modelcontextprotocol";
15+
rev = "29dddc491b5853d8be66aac9e0ffdce105aa7f07";
16+
hash = "sha256-GBA4NPGf6fbj8DJ6Cke4DD03jMe3Ts6uGu2PoLhOaUg=";
17+
};
18+
19+
npmDepsHash = "sha256-aAIH/z/5BSbLYmAc7ZyPEIoblLdHlncp8uFGFDebots=";
20+
21+
passthru = {
22+
updateScript = nix-update-script {
23+
extraArgs = [
24+
"--version=branch"
25+
];
26+
};
27+
};
28+
29+
meta = {
30+
description = "The official MCP server implementation for the Perplexity API Platform";
31+
homepage = "https://github.com/perplexityai/modelcontextprotocol";
32+
license = lib.licenses.mit;
33+
maintainers = with lib.maintainers; [ malik ];
34+
mainProgram = "perplexity-mcp";
35+
platforms = lib.platforms.all;
36+
};
37+
})

0 commit comments

Comments
 (0)