Skip to content

Commit 1e3da94

Browse files
committed
🎨 [docs] Update and simplify MCP documentation and add .mcp.json example
1 parent a86fe2b commit 1e3da94

2 files changed

Lines changed: 23 additions & 3 deletions

File tree

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,32 @@
11
{
22
"mcpServers": {
33
"context7": {
4-
"type": "stdio",
54
"command": "npx",
65
"args": [
76
"-y",
87
"@upstash/context7-mcp@latest"
98
]
109
},
1110
"Sequential-thinking": {
12-
"type": "stdio",
1311
"command": "npx",
1412
"args": [
1513
"-y",
1614
"@modelcontextprotocol/server-sequential-thinking"
1715
]
1816
},
1917
"broswertools": {
20-
"type": "stdio",
2118
"command": "npx",
2219
"args": [
2320
"-y",
2421
"@browsermcp/mcp@latest"
2522
]
23+
},
24+
"Playwright": {
25+
"command": "npx",
26+
"args": [
27+
"-y",
28+
"@playwright/mcp@latest"
29+
]
2630
}
2731
}
2832
}

‎docs/mcp.md‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# ALL MCP
2+
3+
## integrate to claude code
4+
5+
add `.mcp.json` to your project root
6+
7+
```json
8+
{
9+
"mcpServers": {
10+
"context7": {"command": "npx", "args": ["-y", "@upstash/context7-mcp@latest"]},
11+
"Sequential-thinking": {"command": "npx", "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]},
12+
"broswertools": {"command": "npx", "args": ["-y", "@browsermcp/mcp@latest"]},
13+
"Playwright": {"command": "npx", "args": ["-y", "@playwright/mcp@latest"]}
14+
}
15+
}
16+
```

0 commit comments

Comments
 (0)