.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/utensils/mcp-nixos
home/mcp-servers/utensils/mcp-nixos
utensils avatar

mcp-nixos

byutensils· 1 MCP server

Installs

3.7k

Stars

776

Forks

42

Category

DevOps & CI/CD

View on GitHub

TL;DR

🚨 No Nix/NixOS Required! Works on any system - Windows, macOS, Linux. You're just querying APIs.

How to install mcp-nixos?

utensils/mcp-nixos
$git clone https://github.com/utensils/mcp-nixos

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-nixos by running `git clone https://github.com/utensils/mcp-nixos`, then use it for the current task and follow its documentation at https://github.com/utensils/mcp-nixos.

Files · 1

View on GitHub
README.md
1# MCP-NixOS - Because Your AI Shouldn't Hallucinate Package Names
2 
3[![CI](https://github.com/utensils/mcp-nixos/actions/workflows/ci.yml/badge.svg)](https://github.com/utensils/mcp-nixos/actions/workflows/ci.yml)
4[![codecov](https://codecov.io/gh/utensils/mcp-nixos/graph/badge.svg?token=kdcbgvq4Bh)](https://codecov.io/gh/utensils/mcp-nixos)
5[![PyPI](https://img.shields.io/pypi/v/mcp-nixos.svg)](https://pypi.org/project/mcp-nixos/)
6[![FlakeHub](https://img.shields.io/endpoint?url=https://flakehub.com/f/utensils/mcp-nixos/badge)](https://flakehub.com/flake/utensils/mcp-nixos)
7[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
8![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/utensils/mcp-nixos?utm_source=oss&utm_medium=github&utm_campaign=utensils%2Fmcp-nixos&labelColor=171717&color=FF570A&link=https%3A%2F%2Fcoderabbit.ai&label=CodeRabbit+Reviews)
9[![Built with Claude](https://img.shields.io/badge/Built%20with-Claude-D97757?logo=claude&logoColor=white)](https://claude.ai)
10 
11## Quick Start
12 
13**🚨 No Nix/NixOS Required!** Works on any system - Windows, macOS, Linux. You're just querying APIs.
14 
15### Option 1: uvx (Recommended)
16 
17[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=nixos&config=eyJjb21tYW5kIjoidXZ4IG1jcC1uaXhvcyJ9)
18 
19```json
20{
21 "mcpServers": {
22 "nixos": {
23 "command": "uvx",
24 "args": ["mcp-nixos"]
25 }
26 }
27}
28```
29 
30### Option 2: Nix
31 
32[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=nixos&config=eyJjb21tYW5kIjoibml4IHJ1biBnaXRodWI6dXRlbnNpbHMvbWNwLW5peG9zIC0tIn0%3D)
33 
34```json
35{
36 "mcpServers": {
37 "nixos": {
38 "command": "nix",
39 "args": ["run", "github:utensils/mcp-nixos", "--"]
40 }
41 }
42}
43```
44 
45### Option 3: Docker
46 
47[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=nixos&config=eyJjb21tYW5kIjoiZG9ja2VyIiwiYXJncyI6WyJydW4iLCItLXJtIiwiLWkiLCJnaGNyLmlvL3V0ZW5zaWxzL21jcC1uaXhvcyJdfQ%3D%3D)
48 
49```json
50{
51 "mcpServers": {
52 "nixos": {
53 "command": "docker",
54 "args": ["run", "--rm", "-i", "ghcr.io/utensils/mcp-nixos"]
55 }
56 }
57}
58```
59 
60Your AI now has access to real NixOS data instead of making things up. You're welcome.
61 
62### Option 4: HTTP (Remote MCP)
63 
64FastMCP supports running this server over HTTP at a URL (the MCP endpoint defaults to `/mcp`).
65 
66```bash
67# Run an HTTP MCP server at http://127.0.0.1:8000/mcp
68MCP_NIXOS_TRANSPORT=http MCP_NIXOS_HOST=127.0.0.1 MCP_NIXOS_PORT=8000 mcp-nixos
69```
70 
71STDIO (default):
72 
73```bash
74MCP_NIXOS_TRANSPORT=stdio mcp-nixos
75```
76 
77Custom path:
78 
79```bash
80MCP_NIXOS_TRANSPORT=http MCP_NIXOS_PATH=/api/mcp mcp-nixos
81```
82 
83Stateless HTTP (disables per-client session state):
84 
85```bash
86MCP_NIXOS_TRANSPORT=http MCP_NIXOS_STATELESS_HTTP=1 mcp-nixos
87```
88 
89### Option 5: Pi Coding Agent
90 
91[Pi](https://www.npmjs.com/package/@mariozechner/pi-coding-agent) does not speak MCP natively. Two supported paths:
92 
93**A. pi-mcp-adapter (recommended — speaks MCP, single source of truth):**
94 
95```bash
96pi install npm:pi-mcp-adapter
97```
98 
99Then add to `~/.pi/agent/mcp.json`:
100 
101```json
102{
103 "mcpServers": {
104 "nixos": {
105 "command": "uvx",
106 "args": ["mcp-nixos"],
107 "lifecycle": "lazy"
108 }
109 }
110}
111```
112 
113**B. Project-local extension (clone + run):** this repo ships `.pi/extensions/mcp-nixos.ts`, auto-loaded when you run `pi` in the cloned repo. Optional: `cd .pi && npm install` for editor type resolution. Pi runs it either way.
114 
115## What Is This?
116 
117An MCP server providing accurate, real-time information about:
118 
119- **NixOS packages** - 130K+ packages that actually exist
120- **NixOS options** - 23K+ ways to configure your system
121- **Home Manager** - 5K+ options for dotfile enthusiasts
122- **nix-darwin** - 1K+ macOS settings Apple doesn't document
123- **Nixvim** - 5K+ options for Neovim configuration via [NuschtOS search](https://github.com/NuschtOS/search

Preview

utensils/mcp-nixosutensils/mcp-nixos

# MCP-NixOS - Because Your AI Shouldn't Hallucinate Package Names

[![CI](https://github.com/utensils/mcp-nixos/actions/workflows/ci.yml/badge.svg)](https://github.com/utensils/mcp-nixos/actions/workflows/ci.yml)

[![codecov](https://codecov.io/gh/utensils/mcp-nixos/graph/badge.svg?token=kdcbgvq4Bh)](https://codecov.io/gh/utensils/mcp-nixos)

[![PyPI](https://img.shields.io/pypi/v/mcp-nixos.svg)](https://pypi.org/project/mcp-nixos/)

Repoutensils/mcp-nixos
TypeMCP Servers
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPai-assistantai-integration

Related

6 picks
Type
  1. circleci-public avatarmcp-server-circleciA Model Context Protocol (MCP) server implementation for CircleCI, enabling natural language interactions with CircleCI functionality through MCP-enabled clientsMCP ServersJul 2026141k86
  2. argoproj-labs avatarmcp-for-argocdArgo CD MCP ServerMCP ServersJul 202690k547
  3. flux159 avatarmcp-server-kubernetesMCP server for interacting with Kubernetes clusters via kubectlMCP ServersJul 202664k1.5k
  4. hookdeck avatarhookdeck-cliCLI for Hookdeck: forward webhooks to localhost (ngrok alternative), manage and query Event Gateway resources (sources, connections, destinations, events), run the MCP server for AI agents. Free for dev.MCP ServersJul 202647k358
  5. heroku avatarheroku-mcp-serverHeroku Platform MCP ServerMCP ServersJul 202626k80
  6. tiberriver256 avatarmcp-server-azure-devopsAzure DevOps reference server for the Model Context Protocol (MCP)MCP ServersJul 202624k381