-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-settings.json
More file actions
114 lines (114 loc) · 2.28 KB
/
mcp-settings.json
File metadata and controls
114 lines (114 loc) · 2.28 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
"mcpServers": {
"pubmedmcp": {
"command": "uvx",
"args": ["pubmedmcp@latest"],
"env": {
"UV_PRERELEASE": "allow",
"UV_PYTHON": "3.12"
}
},
"playwright": {
"type": "stdio",
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
},
"serena": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server",
"--context",
"ide-assistant"
],
"env": {}
},
"context7": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"${CONTEXT7_API_KEY}"
]
},
"repomix": {
"type": "stdio",
"command": "npx",
"args": ["-y", "repomix", "--mcp"],
"disabled": false,
"autoApprove": []
},
"sequential-thinking": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"arxiv-mcp": {
"type": "stdio",
"command": "uv",
"args": [
"tool",
"run",
"arxiv-mcp-server",
"--storage-path",
"/Users/linyong/Downloads/arxiv"
]
},
"zotero": {
"type": "stdio",
"command": "uv",
"args": ["tool", "run", "zotero-mcp"],
"env": {
"ZOTERO_LOCAL": "true"
}
},
"obsidian": {
"type": "stdio",
"command": "uv",
"args": [
"tool",
"run",
"mcp-obsidian",
"--vault-path",
"/Users/linyong/Library/Mobile Documents/iCloud~md~obsidian/Documents/LifeOS"
],
"env": {
"OBSIDIAN_API_KEY": "${OBSIDIAN_API_KEY}"
}
},
"word-document-server": {
"command": "uvx",
"args": ["--from", "office-word-mcp-server", "word_mcp_server"]
},
"excel-sheet-server": {
"command": "uvx",
"args": ["excel-mcp-server", "stdio"]
},
"ppt-slides-server": {
"command": "uvx",
"args": ["--from", "office-powerpoint-mcp-server", "ppt_mcp_server"],
"env": {}
},
"grep": {
"type": "http",
"url": "https://mcp.grep.app"
},
"tavily": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.tavily.com/mcp/?tavilyApiKey=${TAVILY_API_KEY}"
],
"env": {
"TAVILY_API_KEY": "${TAVILY_API_KEY}"
}
}
}