MCP Hub
Back to servers

mcp-nix

A comprehensive MCP server for the Nix ecosystem that enables searching Nixpkgs, inspecting function definitions in the standard library, and managing configuration options across NixOS, Home Manager, and Darwin.

Stars
3
Forks
1
Tools
9
Updated
Jan 8, 2026
Validated
Jan 9, 2026

A complete MCP server for Nix*

Tests

Features

  • Search Nixpkgs and read package derivations
  • Broad options coverage
    • NixOS
    • Home Manager
    • Nix Darwin
    • Nixvim
    • Impermanence
    • MicroVM.nix
    • nix-nomad
    • simple-nixos-mailserver
    • sops-nix
    • nixos-hardware
    • disko
  • Search the nix standard library and read function definitions
  • Find versions of nixpkgs in which a package exists

Installation

Use the following configuration to add the MCP server to your client:

Using uvx:

{
  "mcpServers": {
    "nix": {
      "command": "uvx",
      "args": ["mcp-nix"]
    }
  }
}

Add to cursor

Using nix run:

{
  "mcpServers": {
    "nix": {
      "command": "nix",
      "args": ["run", "github:felixdorn/mcp-nix"]
    }
  }
}

Add to cursor

Declaratively:

Add the flake input:

{
  inputs.mcp-nix.url = "github:felixdorn/mcp-nix";
}

Then reference the package:

{
  command = "${inputs.mcp-nix.packages.${system}.default}/bin/mcp-nix";
}

Tools

ToolDescription
search_nixpkgsSearch Nixpkgs packages
read_derivationRead package source code
search_optionsSearch options for many projects
list_versionsList available versions for a project
show_option_detailsGet option details or list children
read_option_declarationRead option source code
find_nixpkgs_commit_with_package_versionGet nixpkgs commit for a version, shows available versions if not found (NixHub)
search_nix_stdlibSearch Nix stdlib functions (Noogle)
help_for_stdlib_functionGet help for a stdlib function (Noogle)

Excluding Tools

Use --exclude to disable specific tools:

{
  "mcpServers": {
    "nix": {
      "command": "uvx",
      "args": ["mcp-nix", "--exclude=read_derivation,read_option_declaration"]
    }
  }
}

Contributing

Read CONTRIBUTING.md

Acknowledgments

Thanks to the NixOS Search Team, ExtraNix, NüschtOS, nix-nomad, NixHub, Noogle for maintaining the backends and pipeline this server uses and for the Nix community for making any of this possible.

License

GPLv3: License

<!-- mcp-name: io.github.felixdorn/mcp-nix -->

Reviews

No reviews yet

Sign in to write a review