forked from Simpleyyt/ai-manus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json.example
More file actions
43 lines (43 loc) · 1015 Bytes
/
Copy pathmcp.json.example
File metadata and controls
43 lines (43 loc) · 1015 Bytes
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
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/tmp"
],
"transport": "stdio",
"enabled": true,
"description": "Access to local filesystem"
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"transport": "stdio",
"enabled": true,
"description": "GitHub API integration",
"env": {
"GITHUB_TOKEN": "your-github-token"
}
},
"example-http": {
"url": "http://localhost:8080/mcp",
"transport": "sse",
"enabled": true,
"description": "Example HTTP MCP server",
"headers": {
"Authorization": "Bearer your-token"
}
},
"example-streamable": {
"url": "http://localhost:9090/mcp",
"transport": "streamable-http",
"enabled": true,
"description": "Example streamable HTTP MCP server"
}
}
}