-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-servers.example.json
More file actions
70 lines (69 loc) · 2.04 KB
/
mcp-servers.example.json
File metadata and controls
70 lines (69 loc) · 2.04 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
{
"_readme": "Copy this file to mcp-servers.json and configure your MCP servers. Add any MCP server you want — the skill will use its tools, resources, and prompts.",
"servers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "./output"],
"description": "Local filesystem access for generated files",
"enabled": false
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "your_token_here"
},
"description": "GitHub repos, issues, PRs",
"enabled": false
},
"notion": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-notion"],
"env": {
"NOTION_API_KEY": "your_key_here"
},
"description": "Notion pages, databases, blocks",
"enabled": false
},
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "your_token_here"
},
"description": "Slack channels, messages, threads",
"enabled": false
},
"google-drive": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-google-drive"],
"env": {
"GOOGLE_CLIENT_ID": "",
"GOOGLE_CLIENT_SECRET": ""
},
"description": "Google Drive files and folders",
"enabled": false
},
"fetch": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-fetch"],
"description": "HTTP fetch for external APIs",
"enabled": false
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_key_here"
},
"description": "Brave web search API",
"enabled": false
},
"custom-http-example": {
"type": "http",
"url": "https://your-mcp-server.example.com/mcp",
"description": "Example HTTP MCP server",
"enabled": false
}
}
}