This repository has been archived on 2026-03-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
labmcp/.mcp.json
Torjus Håkestad d7ee6048e1 chore: update dev config for nixpkgs-search
- Update .mcp.json to use nixpkgs-search options/packages servers
- Update CLAUDE.md example to use nixpkgs-search

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 17:31:05 +01:00

31 lines
529 B
JSON

{
"mcpServers": {
"nixpkgs-options": {
"command": "nix",
"args": [
"run",
".#nixpkgs-search",
"--",
"options",
"serve"
],
"env": {
"NIXPKGS_SEARCH_DATABASE": "sqlite://:memory:"
}
},
"nixpkgs-packages": {
"command": "nix",
"args": [
"run",
".#nixpkgs-search",
"--",
"packages",
"serve"
],
"env": {
"NIXPKGS_SEARCH_DATABASE": "sqlite://:memory:"
}
}
}
}