使用VSCode结合DeepSeek API和MCP服务构建本地知识库

使用cool Cline插件,配置apikey

本地mcp Service配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"mcpServers": {
"webserver": {
"command": "node",
"args": [
"D:\\devtools\\nodejs\\node_modules\\npm\\bin\\npx-cli.js",
"-y",
"@modelcontextprotocol/server-filesystem",
"D:\\works\\svn\\JH_Appform_6.2_Release_KongTianChaoSuan\\server\\webserver"
]
},
"notes": {
"command": "node",
"args": [
"D:\\devtools\\nodejs\\node_modules\\npm\\bin\\npx-cli.js",
"-y",
"@modelcontextprotocol/server-filesystem",
"D:\\works\\code\\blog\\source"
]
},
"postgres": {
"command": "node",
"args": [
"D:\\devtools\\nodejs\\node_modules\\npm\\bin\\npx-cli.js",
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://appform:[email protected]:6532/appform"
]
},
"sequential-thinking": {
"command": "node",
"args": [
"D:\\devtools\\nodejs\\node_modules\\npm\\bin\\npx-cli.js",
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
},
"fetch": {
"command": "python",
"args": [
"-m",
"mcp_server_fetch"
]
}
}
}