Skip to content

Commit f637119

Browse files
committed
chore(ai/mcp): remove deprecated server configurations
Remove sequential-thinking and octocode server definitions. These capabilities are either integrated into modern REPL environments or superseded by alternatives like ultrathink.
1 parent aed49c8 commit f637119

File tree

3 files changed

+8
-15
lines changed

3 files changed

+8
-15
lines changed

home/ai/mcp.nix

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
programs.mcp = {
1111
enable = true;
1212
servers = {
13-
sequential-thinking = {
14-
command = "${pkgs.pnpm}/bin/pnpm";
15-
args = ["dlx" "@modelcontextprotocol/server-sequential-thinking"];
16-
};
1713
deepwiki = {
1814
url = "https://mcp.deepwiki.com/mcp";
1915
};
@@ -25,14 +21,22 @@
2521
command = "${pkgs.pnpm}/bin/pnpm";
2622
args = ["dlx" "exa-mcp-server"];
2723
};
24+
### Capabilities already enabled in modern repl environments
2825
# filesystem = {
2926
# command = "${pkgs.pnpm}/bin/pnpm";
3027
# args = ["dlx" "@modelcontextprotocol/server-filesystem"];
3128
# };
29+
## ultrathink
30+
# sequential-thinking = {
31+
# command = "${pkgs.pnpm}/bin/pnpm";
32+
# args = ["dlx" "@modelcontextprotocol/server-sequential-thinking"];
33+
# };
34+
## beads
3235
# memory = {
3336
# command = "${pkgs.pnpm}/bin/pnpm";
3437
# args = ["dlx" "@modelcontextprotocol/server-memory"];
3538
# };
39+
## Capabilities that require domain-specific setup to save context
3640
# playwright = {
3741
# command = "${pkgs.pnpm}/bin/pnpm";
3842
# args = ["dlx" "@playwright/mcp"];

home/ai/repl/claude/mcp.nix

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
pnpmCommand = "${pkgs.pnpm}/bin/pnpm";
33
in {
44
programs.claude-code.mcpServers = {
5-
## Use `ultrathink` instead
6-
# sequential-thinking = {
7-
# type = "stdio";
8-
# command = pnpmCommand;
9-
# args = ["dlx" "@modelcontextprotocol/server-sequential-thinking"];
10-
# };
115
deepwiki = {
126
type = "http";
137
url = "https://mcp.deepwiki.com/mcp";

home/ai/repl/copilot/mcp.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ in {
1111
type = "http";
1212
url = "https://mcp.deepwiki.com/mcp";
1313
};
14-
# octocode = {
15-
# type = "local";
16-
# command = pnpmCommand;
17-
# args = ["dlx" "octocode-mcp@latest"];
18-
# };
1914
exa = {
2015
type = "local";
2116
command = pnpmCommand;

0 commit comments

Comments
 (0)