-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json.example
More file actions
37 lines (37 loc) · 882 Bytes
/
.mcp.json.example
File metadata and controls
37 lines (37 loc) · 882 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
{
"mcpServers": {
"playwright": {
"type": "stdio",
"command": "npx",
"args": ["@playwright/mcp@latest"],
"env": {}
},
"mcp-dev-db": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://localhost:3000/api/mcp/mcp",
"--allow-http"
],
"description": "Development database MCP server for safe SQL operations (stateless HTTP, no Redis required)"
},
"context7": {
"description": "Up-to-date documentation.",
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"]
},
"shadcn": {
"command": "npx",
"args": ["shadcn@latest", "mcp"]
},
"replicate": {
"type": "stdio",
"command": "npx",
"args": ["-y", "replicate-mcp"],
"env": {
"REPLICATE_API_TOKEN": "your_replicate_api_token_here"
}
}
}
}