feat(mcp): add memory and sequential-thinking servers

This commit is contained in:
Jim Myhrberg
2025-07-07 13:22:32 +01:00
parent 0881194a3f
commit b71ad26e6b
4 changed files with 63 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
"exafunction",
"frontmost",
"logpanel",
"modelcontextprotocol",
"runonsave",
"shellformat",
"todesktop",

View File

@@ -2,6 +2,25 @@
"mcpServers": {
"context7": {
"url": "https://mcp.context7.com/mcp"
},
"sequential-thinking": {
"command": "mise",
"args": [
"x",
"npm:@modelcontextprotocol/server-sequential-thinking",
"--",
"mcp-server-sequential-thinking"
]
},
"memory": {
"type": "stdio",
"command": "mise",
"args": [
"x",
"npm:@modelcontextprotocol/server-memory",
"--",
"mcp-server-memory"
]
}
}
}

View File

@@ -1,8 +1,28 @@
{
"servers": {
"context7": {
"url": "https://mcp.context7.com/mcp",
"type": "http"
"type": "http",
"url": "https://mcp.context7.com/mcp"
},
"sequential-thinking": {
"type": "stdio",
"command": "mise",
"args": [
"x",
"npm:@modelcontextprotocol/server-sequential-thinking",
"--",
"mcp-server-sequential-thinking"
]
},
"memory": {
"type": "stdio",
"command": "mise",
"args": [
"x",
"npm:@modelcontextprotocol/server-memory",
"--",
"mcp-server-memory"
]
}
},
"inputs": []

View File

@@ -282,7 +282,28 @@
"mcp": {
"servers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp"
},
"sequential-thinking": {
"type": "stdio",
"command": "mise",
"args": [
"x",
"npm:@modelcontextprotocol/server-sequential-thinking",
"--",
"mcp-server-sequential-thinking"
]
},
"memory": {
"type": "stdio",
"command": "mise",
"args": [
"x",
"npm:@modelcontextprotocol/server-memory",
"--",
"mcp-server-memory"
]
}
}
},