File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
pkgs/by-name/pe/perplexity-mcp Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments