-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.mcp.json.example
More file actions
33 lines (33 loc) · 972 Bytes
/
.mcp.json.example
File metadata and controls
33 lines (33 loc) · 972 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
{
"$schema": "https://json.schemastore.org/mcp.json",
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-memory"],
"description": "Persistent memory storage"
},
"puppeteer": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-puppeteer"],
"description": "Browser automation for screenshots and testing"
},
"filesystem": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-filesystem", "/path/to/allowed/directory"],
"description": "File system access (specify allowed paths)"
},
"github": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-github"],
"env": {
"GITHUB_TOKEN": "your-token-here"
},
"description": "GitHub API integration"
},
"beads": {
"command": "uvx",
"args": ["beads-mcp"],
"description": "Beads persistent task memory (if using Beads MCP)"
}
}
}