1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/tests/modules/programs/opencode/mcp-integration-with-override.nix
2025-11-03 20:25:16 -06:00

48 lines
1.1 KiB
Nix

{
programs.mcp = {
enable = true;
servers = {
everything = {
command = "npx";
args = [
"-y"
"@modelcontextprotocol/server-everything"
];
};
context7 = {
url = "https://mcp.context7.com/mcp";
headers = {
CONTEXT7_API_KEY = "{env:CONTEXT7_API_KEY}";
};
};
};
};
programs.opencode = {
enable = true;
enableMcpIntegration = true;
settings = {
theme = "opencode";
model = "anthropic/claude-sonnet-4-20250514";
# User's custom MCP settings should override generated ones
mcp = {
everything = {
enabled = false; # Override to disable
command = [ "custom-command" ];
type = "local";
};
custom-server = {
enabled = true;
type = "remote";
url = "https://example.com";
};
};
};
};
nmt.script = ''
assertFileExists home-files/.config/opencode/config.json
assertFileContent home-files/.config/opencode/config.json \
${./mcp-integration-with-override.json}
'';
}