-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json
More file actions
78 lines (78 loc) · 1.89 KB
/
.mcp.json
File metadata and controls
78 lines (78 loc) · 1.89 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
71
72
73
74
75
76
77
78
{
"mcpServers": {
"vercel": {
"type": "http",
"url": "https://mcp.vercel.com/",
"description": "Manage deployments, analyze logs, monitor performance"
},
"sentry": {
"type": "http",
"url": "https://mcp.sentry.dev/mcp",
"description": "Monitor errors, debug production issues"
},
"figma": {
"type": "http",
"url": "http://127.0.0.1:3845/mcp",
"description": "Access designs, export assets (requires Figma Desktop)"
},
"linear": {
"type": "sse",
"url": "https://mcp.linear.app/sse",
"description": "Issue tracking and project management"
},
"notion": {
"type": "http",
"url": "https://mcp.notion.com/mcp",
"description": "Documentation, knowledge base, task management"
},
"stripe": {
"type": "http",
"url": "https://mcp.stripe.com",
"description": "Payment processing, subscription management"
},
"postgres-dev": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@bytebase/dbhub"
],
"env": {
"DATABASE_URL": "${DATABASE_URL}"
},
"description": "Development database queries and management"
},
"airtable": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"airtable-mcp-server"
],
"env": {
"AIRTABLE_API_KEY": "${AIRTABLE_API_KEY}"
},
"description": "Content management, data tables"
},
"clickup": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hauptsache.net/clickup-mcp"
],
"env": {
"CLICKUP_API_KEY": "${CLICKUP_API_KEY}",
"CLICKUP_TEAM_ID": "${CLICKUP_TEAM_ID}"
},
"description": "Task management, project tracking"
},
"shadcn": {
"command": "npx",
"args": [
"shadcn@latest",
"mcp"
]
}
}
}