-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp_servers.json
More file actions
41 lines (41 loc) · 1.88 KB
/
mcp_servers.json
File metadata and controls
41 lines (41 loc) · 1.88 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
[
{
"name": "github",
"description": "GitHub API integration. Use for repository operations: issues, PRs, code search, file reads, commits. Requires GITHUB_PERSONAL_ACCESS_TOKEN.",
"command": "npx",
"args": "-y @modelcontextprotocol/server-github",
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
}
},
{
"name": "filesystem",
"description": "Local filesystem access. Use for reading/writing/searching files on the local machine. Scoped to allowed directories only.",
"command": "npx",
"args": "-y @modelcontextprotocol/server-filesystem ${AGENT_WORKSPACE_DIR} ${AGENT_EXTRA_DIR}",
"env": {}
},
{
"name": "duckduckgo",
"description": "Free web search with NO rate limit and NO API key required. Use as the DEFAULT first choice for general web searches. Privacy-focused. Best for: quick lookups, general questions, keyword searches. Rate limit: 1/sec, 15000/month.",
"command": "npx",
"args": "-y @ericthered926/duckduckgo-mcp-server",
"env": {}
},
{
"name": "git",
"description": "Git CLI operations for local repositories. Use for: status, diff, commit, log, branch, push, pull, merge, tag. Always prefer this over github/* for local git operations.",
"command": "uvx",
"args": "mcp-server-git --repository ${AGENT_WORKSPACE_DIR}",
"env": {}
},
{
"name": "tavily",
"description": "Advanced search + web content extraction via Tavily API. Limit: 1,000 requests/month (free tier). Use ONLY when you need to extract full webpage content, crawl sites, or perform deep research across multiple sources. Best for: reading full article content, site mapping, multi-source research. Most expensive quota — use sparingly, only when search alone is not enough.",
"command": "npx",
"args": "-y tavily-mcp@latest",
"env": {
"TAVILY_API_KEY": "${TAVILY_API_KEY}"
}
}
]