-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcpservers.json5
More file actions
102 lines (102 loc) · 2.6 KB
/
Copy pathmcpservers.json5
File metadata and controls
102 lines (102 loc) · 2.6 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
{
"mcpServers": {
"browser_tools": {
"disabled": false,
"args": [
"@agentdeskai/browser-tools-mcp@latest"
],
"command": "npx",
"description": "Browser automation and interaction for scraping and testing"
},
"fetch": {
"disabled": false,
"args": [
"--from",
"mcp-server-fetch",
"mcp-server-fetch"
],
"command": "/home/tanner/.local/bin/uvx",
"description": "Fetch web content and APIs, returns markdown-formatted content"
},
"tavily": {
"description": "Web search for current information, docs, and research",
"env": {
"TAVILY_API_KEY": "${TAVILY_API_KEY}"
},
"disabled": false,
"command": "npx",
"args": [
"-y",
"tavily-mcp"
]
},
"figma": {
"description": "Extract Figma design specs (colors, spacing, typography) from file URLs",
"env": {
"FIGMA_API_KEY": "${FIGMA_API_KEY}"
},
"disabled": true,
"command": "npx",
"args": [
"-y",
"figma-developer-mcp",
"--figma-api-key=${FIGMA_API_KEY}",
"--stdio"
]
},
"github": {
"description": "GitHub operations: repos, issues, PRs, branches, file contents, search",
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
},
"disabled": false,
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
]
},
"context7": {
"description": "Fetches up-to-date, version-specific library documentation (Next.js, React, SDL2, etc.)",
"env": {
"DEFAULT_MINIMUM_TOKENS": "5000"
},
"disabled": false,
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp"
]
},
"sequentialthinking": {
"disabled": false,
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"command": "npx",
"description": "Step-by-step reasoning scratchpad for complex multi-step problems"
},
"memory": {
"disabled": false,
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"command": "npx",
"description": "Persistent key-value memory that persists across sessions"
},
"filesystem": {
"description": "Read/write files anywhere under /home/tanner",
"env": {
"ALLOWED_DIRECTORIES": "/home/tanner"
},
"disabled": false,
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem"
]
}
}
}