hermes-agent d009717854
NixOS Configuration CI / Nix Flake Check (pull_request) Failing after 14s
audiobookshelf-mcp: fix src hash (from CI), still need vendorHash
2026-07-12 11:14:43 +00:00
2026-06-03 23:54:11 +02:00
2026-02-04 23:04:56 +01:00
2026-02-04 23:32:50 +01:00
fix
2026-02-04 15:53:58 +01:00
2026-02-04 16:26:53 +01:00
2026-06-03 23:54:11 +02:00
fix
2026-02-05 10:58:27 +01:00
2026-06-14 23:16:03 +02:00
2026-06-25 16:07:16 +02:00

MCP Server Packages for Nix

Overview

This repository provides Nix derivations for MCP (Model Context Protocol) servers that are not yet available in nixpkgs.

Available Packages

Package Description Language
academic-search-mcp-server Search academic papers via Semantic Scholar and Crossref Python
annas-mcp Anna's Archive MCP server Python
applemusic-mcp Apple Music — manage playlists, search catalog, browse library Python
duckduckgo-mcp-server Web search and content fetching via DuckDuckGo Python
jellyfin-mcp MCP server for Jellyfin media server Python
kindly-web-search-mcp-server Web search + content retrieval via SearxNG, Tavily, or SearXNG Python
manim-mcp-server Execute Manim animation code and return videos Python
mcp-arr-server MCP server for *arr suite — Sonarr, Radarr, Lidarr, Prowlarr TypeScript
mcp-score AI-driven music score generation and MuseScore live control Python
n8n-mcp AI access to n8n node docs and workflow management TypeScript
nextcloud-mcp-server Nextcloud MCP server (files, calendar, contacts, deck, etc.) Python
pdf-reader-mcp Productionready PDF processing with parallel processing TypeScript
rust-research-mcp Accumulate and organize academic knowledge Rust
simple-web-search-mcp Zero-config web search and page reading for LLMs TypeScript
transmission-mcp MCP server for the Transmission BitTorrent client Python
sabnzbd-mcp MCP server for SABnzbd download management Python
jellyfin-mcp MCP server for Jellyfin — search, playback, metadata, admin Go
zotero-mcp Connect Zotero research library with AI assistants Python
mcp-score AI-driven music score generation and MuseScore live control Python

Usage

Add this flake to your inputs and apply the overlay:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    mcp-servers.url = "git+ssh://gitea@gitea.bueso.eu/luis/mcp-servers";
  };

  outputs = { self, nixpkgs, ... }: {
    # Apply the overlay to get packages in pkgs
    nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [
        {
          nixpkgs.overlays = [ mcp-servers.overlays.default ];
        }
        # Now you can use pkgs.manim-mcp-server
      ];
    };
  };
}

Using Packages Directly

Access packages without the overlay:

{
  mcp-servers.url = "git+ssh://gitea@gitea.bueso.eu/luis/mcp-servers";

  outputs = { mcp-servers, ... }: {
    # Access directly
    myPackage = mcp-servers.packages.x86_64-linux.manim-mcp-server;
  };
}

License

Each packaged MCP server retains its original license. The Nix expressions in this repository are provided as-is.

S
Description
No description provided
Readme 229 KiB
Languages
Nix 82.4%
Python 17.6%