@qazuor/claude-code-config 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -16
- package/dist/bin.cjs +1434 -635
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1413 -614
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +195 -425
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +195 -425
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/CLAUDE.md.template +108 -0
package/dist/index.js
CHANGED
|
@@ -1036,44 +1036,72 @@ function getBundleById(id) {
|
|
|
1036
1036
|
init_esm_shims();
|
|
1037
1037
|
var MCP_SERVERS = [
|
|
1038
1038
|
// ============================================
|
|
1039
|
-
// DOCUMENTATION
|
|
1039
|
+
// DOCUMENTATION & AI TOOLS
|
|
1040
1040
|
// ============================================
|
|
1041
1041
|
{
|
|
1042
1042
|
id: "context7",
|
|
1043
1043
|
name: "Context7",
|
|
1044
|
-
description: "
|
|
1045
|
-
package: "@
|
|
1044
|
+
description: "Up-to-date documentation lookup for libraries and frameworks",
|
|
1045
|
+
package: "@upstash/context7-mcp",
|
|
1046
1046
|
category: "documentation",
|
|
1047
|
-
requiresConfig: false
|
|
1047
|
+
requiresConfig: false,
|
|
1048
|
+
installInstructions: "API keys provide higher rate limits. Get one at https://context7.com/dashboard"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
id: "perplexity",
|
|
1052
|
+
name: "Perplexity",
|
|
1053
|
+
description: "Web search without leaving the MCP ecosystem via Sonar API",
|
|
1054
|
+
package: "@chatmcp/server-perplexity-ask",
|
|
1055
|
+
category: "search",
|
|
1056
|
+
requiresConfig: true,
|
|
1057
|
+
configFields: [
|
|
1058
|
+
{
|
|
1059
|
+
name: "apiKey",
|
|
1060
|
+
type: "string",
|
|
1061
|
+
required: true,
|
|
1062
|
+
description: "Perplexity/Sonar API Key",
|
|
1063
|
+
envVar: "PERPLEXITY_API_KEY"
|
|
1064
|
+
}
|
|
1065
|
+
],
|
|
1066
|
+
installInstructions: "Get API key at https://www.perplexity.ai/settings/api"
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
id: "sequential-thinking",
|
|
1070
|
+
name: "Sequential Thinking",
|
|
1071
|
+
description: "Dynamic problem-solving through structured thinking process",
|
|
1072
|
+
package: "@modelcontextprotocol/server-sequential-thinking",
|
|
1073
|
+
category: "ai",
|
|
1074
|
+
requiresConfig: false,
|
|
1075
|
+
installInstructions: "Helps break down complex problems into manageable steps."
|
|
1048
1076
|
},
|
|
1049
1077
|
// ============================================
|
|
1050
1078
|
// TESTING & BROWSER AUTOMATION
|
|
1051
1079
|
// ============================================
|
|
1052
1080
|
{
|
|
1053
|
-
id: "
|
|
1054
|
-
name: "
|
|
1055
|
-
description: "
|
|
1056
|
-
package: "@
|
|
1081
|
+
id: "puppeteer",
|
|
1082
|
+
name: "Puppeteer",
|
|
1083
|
+
description: "Headless Chrome automation for testing and scraping",
|
|
1084
|
+
package: "@modelcontextprotocol/server-puppeteer",
|
|
1057
1085
|
category: "testing",
|
|
1058
|
-
requiresConfig: false
|
|
1059
|
-
installInstructions: "Requires Chrome/Chromium browser installed on the system."
|
|
1086
|
+
requiresConfig: false
|
|
1060
1087
|
},
|
|
1061
1088
|
{
|
|
1062
1089
|
id: "playwright",
|
|
1063
1090
|
name: "Playwright",
|
|
1064
|
-
description: "
|
|
1065
|
-
package: "@
|
|
1091
|
+
description: "Browser automation via accessibility snapshots, not screenshots",
|
|
1092
|
+
package: "@playwright/mcp",
|
|
1066
1093
|
category: "testing",
|
|
1067
1094
|
requiresConfig: false,
|
|
1068
|
-
installInstructions: "
|
|
1095
|
+
installInstructions: "Requires Node.js 18+. Supports Chrome, Firefox, WebKit."
|
|
1069
1096
|
},
|
|
1070
1097
|
{
|
|
1071
|
-
id: "
|
|
1072
|
-
name: "
|
|
1073
|
-
description: "
|
|
1074
|
-
package: "
|
|
1098
|
+
id: "chrome-devtools",
|
|
1099
|
+
name: "Chrome DevTools",
|
|
1100
|
+
description: "Control and inspect live Chrome browser with DevTools Protocol",
|
|
1101
|
+
package: "chrome-devtools-mcp",
|
|
1075
1102
|
category: "testing",
|
|
1076
|
-
requiresConfig: false
|
|
1103
|
+
requiresConfig: false,
|
|
1104
|
+
installInstructions: "Requires Chrome installed. For Claude Code: claude mcp add chrome-devtools npx chrome-devtools-mcp@latest"
|
|
1077
1105
|
},
|
|
1078
1106
|
// ============================================
|
|
1079
1107
|
// VERSION CONTROL
|
|
@@ -1081,7 +1109,7 @@ var MCP_SERVERS = [
|
|
|
1081
1109
|
{
|
|
1082
1110
|
id: "github",
|
|
1083
1111
|
name: "GitHub",
|
|
1084
|
-
description: "GitHub API integration (issues, PRs, repos)",
|
|
1112
|
+
description: "GitHub API integration (issues, PRs, repos, file operations)",
|
|
1085
1113
|
package: "@modelcontextprotocol/server-github",
|
|
1086
1114
|
category: "version-control",
|
|
1087
1115
|
requiresConfig: true,
|
|
@@ -1094,32 +1122,33 @@ var MCP_SERVERS = [
|
|
|
1094
1122
|
envVar: "GITHUB_TOKEN"
|
|
1095
1123
|
}
|
|
1096
1124
|
],
|
|
1097
|
-
installInstructions: "Create a Personal Access Token at https://github.com/settings/tokens with repo
|
|
1125
|
+
installInstructions: "Create a Personal Access Token at https://github.com/settings/tokens with repo scope."
|
|
1098
1126
|
},
|
|
1099
1127
|
{
|
|
1100
1128
|
id: "gitlab",
|
|
1101
1129
|
name: "GitLab",
|
|
1102
|
-
description: "GitLab API
|
|
1103
|
-
package: "@
|
|
1130
|
+
description: "GitLab API for project management, issues, and merge requests",
|
|
1131
|
+
package: "@modelcontextprotocol/server-gitlab",
|
|
1104
1132
|
category: "version-control",
|
|
1105
1133
|
requiresConfig: true,
|
|
1106
1134
|
configFields: [
|
|
1107
1135
|
{
|
|
1108
1136
|
name: "token",
|
|
1109
1137
|
type: "string",
|
|
1110
|
-
required:
|
|
1138
|
+
required: true,
|
|
1111
1139
|
description: "GitLab Personal Access Token",
|
|
1112
|
-
envVar: "
|
|
1140
|
+
envVar: "GITLAB_PERSONAL_ACCESS_TOKEN"
|
|
1113
1141
|
},
|
|
1114
1142
|
{
|
|
1115
|
-
name: "
|
|
1143
|
+
name: "apiUrl",
|
|
1116
1144
|
type: "string",
|
|
1117
1145
|
required: false,
|
|
1118
|
-
description: "GitLab
|
|
1119
|
-
|
|
1146
|
+
description: "GitLab API URL (default: https://gitlab.com/api/v4)",
|
|
1147
|
+
envVar: "GITLAB_API_URL",
|
|
1148
|
+
default: "https://gitlab.com/api/v4"
|
|
1120
1149
|
}
|
|
1121
1150
|
],
|
|
1122
|
-
installInstructions: "Create
|
|
1151
|
+
installInstructions: "Create PAT at GitLab User Settings > Access Tokens with api, read_repository, write_repository scopes."
|
|
1123
1152
|
},
|
|
1124
1153
|
// ============================================
|
|
1125
1154
|
// DATABASES
|
|
@@ -1127,7 +1156,7 @@ var MCP_SERVERS = [
|
|
|
1127
1156
|
{
|
|
1128
1157
|
id: "postgres",
|
|
1129
1158
|
name: "PostgreSQL",
|
|
1130
|
-
description: "
|
|
1159
|
+
description: "Read-only PostgreSQL database access with schema inspection",
|
|
1131
1160
|
package: "@modelcontextprotocol/server-postgres",
|
|
1132
1161
|
category: "database",
|
|
1133
1162
|
requiresConfig: true,
|
|
@@ -1143,63 +1172,45 @@ var MCP_SERVERS = [
|
|
|
1143
1172
|
installInstructions: "Connection string format: postgresql://user:password@host:port/database"
|
|
1144
1173
|
},
|
|
1145
1174
|
{
|
|
1146
|
-
id: "
|
|
1147
|
-
name: "
|
|
1148
|
-
description: "
|
|
1149
|
-
package: "@
|
|
1150
|
-
category: "database",
|
|
1151
|
-
requiresConfig: true,
|
|
1152
|
-
configFields: [
|
|
1153
|
-
{
|
|
1154
|
-
name: "apiKey",
|
|
1155
|
-
type: "string",
|
|
1156
|
-
required: false,
|
|
1157
|
-
description: "Neon API Key",
|
|
1158
|
-
envVar: "NEON_API_KEY"
|
|
1159
|
-
}
|
|
1160
|
-
],
|
|
1161
|
-
installInstructions: "Get your API key from https://console.neon.tech/app/settings/api-keys"
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
id: "mongodb",
|
|
1165
|
-
name: "MongoDB",
|
|
1166
|
-
description: "MongoDB document database access",
|
|
1167
|
-
package: "@anthropic/mongodb-mcp",
|
|
1175
|
+
id: "mysql",
|
|
1176
|
+
name: "MySQL",
|
|
1177
|
+
description: "Read-only MySQL/MariaDB database access",
|
|
1178
|
+
package: "@modelcontextprotocol/server-mysql",
|
|
1168
1179
|
category: "database",
|
|
1169
1180
|
requiresConfig: true,
|
|
1170
1181
|
configFields: [
|
|
1171
1182
|
{
|
|
1172
1183
|
name: "connectionString",
|
|
1173
1184
|
type: "string",
|
|
1174
|
-
required:
|
|
1175
|
-
description: "
|
|
1176
|
-
envVar: "
|
|
1185
|
+
required: true,
|
|
1186
|
+
description: "MySQL connection URL",
|
|
1187
|
+
envVar: "MYSQL_URL"
|
|
1177
1188
|
}
|
|
1178
1189
|
],
|
|
1179
|
-
installInstructions: "Connection
|
|
1190
|
+
installInstructions: "Connection format: mysql://user:password@host:port/database"
|
|
1180
1191
|
},
|
|
1181
1192
|
{
|
|
1182
|
-
id: "
|
|
1183
|
-
name: "
|
|
1184
|
-
description: "
|
|
1185
|
-
package: "@
|
|
1193
|
+
id: "neon",
|
|
1194
|
+
name: "Neon",
|
|
1195
|
+
description: "Neon serverless PostgreSQL with branch management",
|
|
1196
|
+
package: "@neondatabase/mcp-server-neon",
|
|
1186
1197
|
category: "database",
|
|
1187
1198
|
requiresConfig: true,
|
|
1188
1199
|
configFields: [
|
|
1189
1200
|
{
|
|
1190
|
-
name: "
|
|
1201
|
+
name: "apiKey",
|
|
1191
1202
|
type: "string",
|
|
1192
1203
|
required: false,
|
|
1193
|
-
description: "
|
|
1194
|
-
envVar: "
|
|
1204
|
+
description: "Neon API Key",
|
|
1205
|
+
envVar: "NEON_API_KEY"
|
|
1195
1206
|
}
|
|
1196
1207
|
],
|
|
1197
|
-
installInstructions: "
|
|
1208
|
+
installInstructions: "Get your API key from https://console.neon.tech/app/settings/api-keys"
|
|
1198
1209
|
},
|
|
1199
1210
|
{
|
|
1200
1211
|
id: "sqlite",
|
|
1201
1212
|
name: "SQLite",
|
|
1202
|
-
description: "SQLite
|
|
1213
|
+
description: "SQLite database interaction and business intelligence",
|
|
1203
1214
|
package: "@modelcontextprotocol/server-sqlite",
|
|
1204
1215
|
category: "database",
|
|
1205
1216
|
requiresConfig: true,
|
|
@@ -1216,27 +1227,20 @@ var MCP_SERVERS = [
|
|
|
1216
1227
|
{
|
|
1217
1228
|
id: "supabase",
|
|
1218
1229
|
name: "Supabase",
|
|
1219
|
-
description: "Supabase
|
|
1220
|
-
package: "@supabase/mcp-server",
|
|
1230
|
+
description: "Supabase projects, database, Edge Functions, and type generation",
|
|
1231
|
+
package: "@supabase/mcp-server-supabase",
|
|
1221
1232
|
category: "database",
|
|
1222
1233
|
requiresConfig: true,
|
|
1223
1234
|
configFields: [
|
|
1224
1235
|
{
|
|
1225
|
-
name: "
|
|
1226
|
-
type: "string",
|
|
1227
|
-
required: false,
|
|
1228
|
-
description: "Supabase project URL",
|
|
1229
|
-
envVar: "SUPABASE_URL"
|
|
1230
|
-
},
|
|
1231
|
-
{
|
|
1232
|
-
name: "anonKey",
|
|
1236
|
+
name: "accessToken",
|
|
1233
1237
|
type: "string",
|
|
1234
1238
|
required: false,
|
|
1235
|
-
description: "Supabase
|
|
1236
|
-
envVar: "
|
|
1239
|
+
description: "Supabase Personal Access Token",
|
|
1240
|
+
envVar: "SUPABASE_ACCESS_TOKEN"
|
|
1237
1241
|
}
|
|
1238
1242
|
],
|
|
1239
|
-
installInstructions: "
|
|
1243
|
+
installInstructions: "Get your access token from https://supabase.com/dashboard/account/tokens"
|
|
1240
1244
|
},
|
|
1241
1245
|
// ============================================
|
|
1242
1246
|
// CACHE & KEY-VALUE STORES
|
|
@@ -1244,8 +1248,8 @@ var MCP_SERVERS = [
|
|
|
1244
1248
|
{
|
|
1245
1249
|
id: "redis",
|
|
1246
1250
|
name: "Redis",
|
|
1247
|
-
description: "Redis
|
|
1248
|
-
package: "@
|
|
1251
|
+
description: "Redis key-value store operations (set, get, delete, list)",
|
|
1252
|
+
package: "@modelcontextprotocol/server-redis",
|
|
1249
1253
|
category: "cache",
|
|
1250
1254
|
requiresConfig: true,
|
|
1251
1255
|
configFields: [
|
|
@@ -1258,29 +1262,29 @@ var MCP_SERVERS = [
|
|
|
1258
1262
|
default: "redis://localhost:6379"
|
|
1259
1263
|
}
|
|
1260
1264
|
],
|
|
1261
|
-
installInstructions: "
|
|
1265
|
+
installInstructions: "Pass Redis URL as argument: npx @modelcontextprotocol/server-redis redis://localhost:6379"
|
|
1262
1266
|
},
|
|
1263
1267
|
{
|
|
1264
1268
|
id: "upstash",
|
|
1265
1269
|
name: "Upstash",
|
|
1266
|
-
description: "Upstash
|
|
1270
|
+
description: "Upstash Redis database management and commands",
|
|
1267
1271
|
package: "@upstash/mcp-server",
|
|
1268
1272
|
category: "cache",
|
|
1269
1273
|
requiresConfig: true,
|
|
1270
1274
|
configFields: [
|
|
1271
1275
|
{
|
|
1272
|
-
name: "
|
|
1276
|
+
name: "email",
|
|
1273
1277
|
type: "string",
|
|
1274
1278
|
required: false,
|
|
1275
|
-
description: "Upstash
|
|
1276
|
-
envVar: "
|
|
1279
|
+
description: "Upstash account email",
|
|
1280
|
+
envVar: "UPSTASH_EMAIL"
|
|
1277
1281
|
},
|
|
1278
1282
|
{
|
|
1279
|
-
name: "
|
|
1283
|
+
name: "apiKey",
|
|
1280
1284
|
type: "string",
|
|
1281
1285
|
required: false,
|
|
1282
|
-
description: "Upstash
|
|
1283
|
-
envVar: "
|
|
1286
|
+
description: "Upstash API Key",
|
|
1287
|
+
envVar: "UPSTASH_API_KEY"
|
|
1284
1288
|
}
|
|
1285
1289
|
],
|
|
1286
1290
|
installInstructions: "Get credentials from https://console.upstash.com"
|
|
@@ -1288,57 +1292,14 @@ var MCP_SERVERS = [
|
|
|
1288
1292
|
// ============================================
|
|
1289
1293
|
// DEPLOYMENT & INFRASTRUCTURE
|
|
1290
1294
|
// ============================================
|
|
1291
|
-
{
|
|
1292
|
-
id: "vercel",
|
|
1293
|
-
name: "Vercel",
|
|
1294
|
-
description: "Vercel deployment and project management",
|
|
1295
|
-
package: "@vercel/mcp",
|
|
1296
|
-
category: "deployment",
|
|
1297
|
-
requiresConfig: true,
|
|
1298
|
-
configFields: [
|
|
1299
|
-
{
|
|
1300
|
-
name: "token",
|
|
1301
|
-
type: "string",
|
|
1302
|
-
required: false,
|
|
1303
|
-
description: "Vercel Access Token",
|
|
1304
|
-
envVar: "VERCEL_TOKEN"
|
|
1305
|
-
}
|
|
1306
|
-
],
|
|
1307
|
-
installInstructions: "Create an access token at https://vercel.com/account/tokens"
|
|
1308
|
-
},
|
|
1309
|
-
{
|
|
1310
|
-
id: "netlify",
|
|
1311
|
-
name: "Netlify",
|
|
1312
|
-
description: "Netlify deployment and site management",
|
|
1313
|
-
package: "@anthropic/netlify-mcp",
|
|
1314
|
-
category: "deployment",
|
|
1315
|
-
requiresConfig: true,
|
|
1316
|
-
configFields: [
|
|
1317
|
-
{
|
|
1318
|
-
name: "token",
|
|
1319
|
-
type: "string",
|
|
1320
|
-
required: false,
|
|
1321
|
-
description: "Netlify Personal Access Token",
|
|
1322
|
-
envVar: "NETLIFY_TOKEN"
|
|
1323
|
-
}
|
|
1324
|
-
],
|
|
1325
|
-
installInstructions: "Create a token at https://app.netlify.com/user/applications#personal-access-tokens"
|
|
1326
|
-
},
|
|
1327
1295
|
{
|
|
1328
1296
|
id: "cloudflare",
|
|
1329
1297
|
name: "Cloudflare",
|
|
1330
|
-
description: "Cloudflare Workers,
|
|
1331
|
-
package: "@cloudflare/mcp-server",
|
|
1298
|
+
description: "Cloudflare Workers, D1, KV, R2, and DNS management",
|
|
1299
|
+
package: "@cloudflare/mcp-server-cloudflare",
|
|
1332
1300
|
category: "deployment",
|
|
1333
1301
|
requiresConfig: true,
|
|
1334
1302
|
configFields: [
|
|
1335
|
-
{
|
|
1336
|
-
name: "apiToken",
|
|
1337
|
-
type: "string",
|
|
1338
|
-
required: false,
|
|
1339
|
-
description: "Cloudflare API Token",
|
|
1340
|
-
envVar: "CLOUDFLARE_API_TOKEN"
|
|
1341
|
-
},
|
|
1342
1303
|
{
|
|
1343
1304
|
name: "accountId",
|
|
1344
1305
|
type: "string",
|
|
@@ -1347,170 +1308,89 @@ var MCP_SERVERS = [
|
|
|
1347
1308
|
envVar: "CLOUDFLARE_ACCOUNT_ID"
|
|
1348
1309
|
}
|
|
1349
1310
|
],
|
|
1350
|
-
installInstructions: "
|
|
1311
|
+
installInstructions: "Run: npx @cloudflare/mcp-server-cloudflare init"
|
|
1351
1312
|
},
|
|
1352
1313
|
{
|
|
1353
|
-
id: "
|
|
1354
|
-
name: "
|
|
1355
|
-
description: "
|
|
1356
|
-
package: "
|
|
1357
|
-
category: "
|
|
1358
|
-
requiresConfig: true,
|
|
1359
|
-
configFields: [
|
|
1360
|
-
{
|
|
1361
|
-
name: "accessKeyId",
|
|
1362
|
-
type: "string",
|
|
1363
|
-
required: false,
|
|
1364
|
-
description: "AWS Access Key ID",
|
|
1365
|
-
envVar: "AWS_ACCESS_KEY_ID"
|
|
1366
|
-
},
|
|
1367
|
-
{
|
|
1368
|
-
name: "secretAccessKey",
|
|
1369
|
-
type: "string",
|
|
1370
|
-
required: false,
|
|
1371
|
-
description: "AWS Secret Access Key",
|
|
1372
|
-
envVar: "AWS_SECRET_ACCESS_KEY"
|
|
1373
|
-
},
|
|
1374
|
-
{
|
|
1375
|
-
name: "region",
|
|
1376
|
-
type: "string",
|
|
1377
|
-
required: false,
|
|
1378
|
-
description: "AWS Region",
|
|
1379
|
-
envVar: "AWS_REGION",
|
|
1380
|
-
default: "us-east-1"
|
|
1381
|
-
}
|
|
1382
|
-
],
|
|
1383
|
-
installInstructions: "Create credentials in AWS IAM Console with appropriate permissions."
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
id: "docker",
|
|
1387
|
-
name: "Docker",
|
|
1388
|
-
description: "Docker container management",
|
|
1389
|
-
package: "@anthropic/docker-mcp",
|
|
1390
|
-
category: "infrastructure",
|
|
1391
|
-
requiresConfig: false,
|
|
1392
|
-
installInstructions: "Requires Docker Desktop or Docker Engine installed."
|
|
1393
|
-
},
|
|
1394
|
-
{
|
|
1395
|
-
id: "kubernetes",
|
|
1396
|
-
name: "Kubernetes",
|
|
1397
|
-
description: "Kubernetes cluster management",
|
|
1398
|
-
package: "@anthropic/kubernetes-mcp",
|
|
1399
|
-
category: "infrastructure",
|
|
1314
|
+
id: "vercel",
|
|
1315
|
+
name: "Vercel",
|
|
1316
|
+
description: "Vercel deployments, DNS records, and project management",
|
|
1317
|
+
package: "vercel-mcp",
|
|
1318
|
+
category: "deployment",
|
|
1400
1319
|
requiresConfig: true,
|
|
1401
1320
|
configFields: [
|
|
1402
1321
|
{
|
|
1403
|
-
name: "
|
|
1404
|
-
type: "string",
|
|
1405
|
-
required: false,
|
|
1406
|
-
description: "Path to kubeconfig file",
|
|
1407
|
-
default: "~/.kube/config"
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
name: "context",
|
|
1322
|
+
name: "apiKey",
|
|
1411
1323
|
type: "string",
|
|
1412
|
-
required:
|
|
1413
|
-
description: "
|
|
1324
|
+
required: true,
|
|
1325
|
+
description: "Vercel API Key",
|
|
1326
|
+
envVar: "VERCEL_API_KEY"
|
|
1414
1327
|
}
|
|
1415
1328
|
],
|
|
1416
|
-
installInstructions: "
|
|
1329
|
+
installInstructions: "Get API key at https://vercel.com/account/tokens"
|
|
1417
1330
|
},
|
|
1418
1331
|
{
|
|
1419
1332
|
id: "filesystem",
|
|
1420
1333
|
name: "Filesystem",
|
|
1421
|
-
description: "
|
|
1334
|
+
description: "Secure file operations with configurable access controls",
|
|
1422
1335
|
package: "@modelcontextprotocol/server-filesystem",
|
|
1423
1336
|
category: "infrastructure",
|
|
1424
1337
|
requiresConfig: false
|
|
1425
1338
|
},
|
|
1426
|
-
// ============================================
|
|
1427
|
-
// PROJECT MANAGEMENT
|
|
1428
|
-
// ============================================
|
|
1429
1339
|
{
|
|
1430
|
-
id: "
|
|
1431
|
-
name: "
|
|
1432
|
-
description: "
|
|
1433
|
-
package: "@
|
|
1434
|
-
category: "
|
|
1435
|
-
requiresConfig:
|
|
1436
|
-
|
|
1437
|
-
{
|
|
1438
|
-
name: "apiKey",
|
|
1439
|
-
type: "string",
|
|
1440
|
-
required: false,
|
|
1441
|
-
description: "Linear API Key",
|
|
1442
|
-
envVar: "LINEAR_API_KEY"
|
|
1443
|
-
}
|
|
1444
|
-
],
|
|
1445
|
-
installInstructions: "Create an API key at https://linear.app/settings/api"
|
|
1446
|
-
},
|
|
1447
|
-
{
|
|
1448
|
-
id: "jira",
|
|
1449
|
-
name: "Jira",
|
|
1450
|
-
description: "Atlassian Jira issue tracking",
|
|
1451
|
-
package: "@anthropic/jira-mcp",
|
|
1452
|
-
category: "project-mgmt",
|
|
1453
|
-
requiresConfig: true,
|
|
1454
|
-
configFields: [
|
|
1455
|
-
{
|
|
1456
|
-
name: "host",
|
|
1457
|
-
type: "string",
|
|
1458
|
-
required: false,
|
|
1459
|
-
description: "Jira instance URL",
|
|
1460
|
-
envVar: "JIRA_HOST"
|
|
1461
|
-
},
|
|
1462
|
-
{
|
|
1463
|
-
name: "email",
|
|
1464
|
-
type: "string",
|
|
1465
|
-
required: false,
|
|
1466
|
-
description: "Jira account email",
|
|
1467
|
-
envVar: "JIRA_EMAIL"
|
|
1468
|
-
},
|
|
1469
|
-
{
|
|
1470
|
-
name: "token",
|
|
1471
|
-
type: "string",
|
|
1472
|
-
required: false,
|
|
1473
|
-
description: "Jira API Token",
|
|
1474
|
-
envVar: "JIRA_TOKEN"
|
|
1475
|
-
}
|
|
1476
|
-
],
|
|
1477
|
-
installInstructions: "Create an API token at https://id.atlassian.com/manage-profile/security/api-tokens"
|
|
1340
|
+
id: "memory",
|
|
1341
|
+
name: "Memory",
|
|
1342
|
+
description: "Knowledge graph-based persistent memory system",
|
|
1343
|
+
package: "@modelcontextprotocol/server-memory",
|
|
1344
|
+
category: "infrastructure",
|
|
1345
|
+
requiresConfig: false,
|
|
1346
|
+
installInstructions: "Memory is stored in memory.jsonl in the server directory by default."
|
|
1478
1347
|
},
|
|
1348
|
+
// ============================================
|
|
1349
|
+
// PROJECT MANAGEMENT & PRODUCTIVITY
|
|
1350
|
+
// ============================================
|
|
1479
1351
|
{
|
|
1480
1352
|
id: "notion",
|
|
1481
1353
|
name: "Notion",
|
|
1482
|
-
description: "Notion
|
|
1483
|
-
package: "@
|
|
1354
|
+
description: "Official Notion API for pages, databases, and workspace",
|
|
1355
|
+
package: "@notionhq/notion-mcp-server",
|
|
1484
1356
|
category: "project-mgmt",
|
|
1485
1357
|
requiresConfig: true,
|
|
1486
1358
|
configFields: [
|
|
1487
1359
|
{
|
|
1488
1360
|
name: "token",
|
|
1489
1361
|
type: "string",
|
|
1490
|
-
required:
|
|
1362
|
+
required: true,
|
|
1491
1363
|
description: "Notion Integration Token",
|
|
1492
1364
|
envVar: "NOTION_TOKEN"
|
|
1493
1365
|
}
|
|
1494
1366
|
],
|
|
1495
|
-
installInstructions: "Create
|
|
1367
|
+
installInstructions: "Create integration at https://www.notion.so/profile/integrations and share pages with it."
|
|
1496
1368
|
},
|
|
1497
1369
|
{
|
|
1498
|
-
id: "
|
|
1499
|
-
name: "
|
|
1500
|
-
description: "
|
|
1501
|
-
package: "
|
|
1370
|
+
id: "obsidian",
|
|
1371
|
+
name: "Obsidian",
|
|
1372
|
+
description: "Read and search Obsidian vaults and Markdown directories",
|
|
1373
|
+
package: "mcp-obsidian",
|
|
1502
1374
|
category: "project-mgmt",
|
|
1503
1375
|
requiresConfig: true,
|
|
1504
1376
|
configFields: [
|
|
1505
1377
|
{
|
|
1506
|
-
name: "
|
|
1378
|
+
name: "vaultPath",
|
|
1507
1379
|
type: "string",
|
|
1508
|
-
required:
|
|
1509
|
-
description: "
|
|
1510
|
-
envVar: "ASANA_TOKEN"
|
|
1380
|
+
required: true,
|
|
1381
|
+
description: "Path to Obsidian vault"
|
|
1511
1382
|
}
|
|
1512
1383
|
],
|
|
1513
|
-
installInstructions: "
|
|
1384
|
+
installInstructions: "Works with any Markdown directory. Point to your vault path."
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
id: "n8n",
|
|
1388
|
+
name: "n8n",
|
|
1389
|
+
description: "n8n workflow automation node documentation and management",
|
|
1390
|
+
package: "n8n-mcp",
|
|
1391
|
+
category: "project-mgmt",
|
|
1392
|
+
requiresConfig: false,
|
|
1393
|
+
installInstructions: "Provides access to 543 n8n nodes documentation."
|
|
1514
1394
|
},
|
|
1515
1395
|
// ============================================
|
|
1516
1396
|
// MONITORING & OBSERVABILITY
|
|
@@ -1518,7 +1398,7 @@ var MCP_SERVERS = [
|
|
|
1518
1398
|
{
|
|
1519
1399
|
id: "sentry",
|
|
1520
1400
|
name: "Sentry",
|
|
1521
|
-
description: "
|
|
1401
|
+
description: "Query Sentry errors, issues, and project information",
|
|
1522
1402
|
package: "@sentry/mcp-server",
|
|
1523
1403
|
category: "monitoring",
|
|
1524
1404
|
requiresConfig: true,
|
|
@@ -1529,47 +1409,9 @@ var MCP_SERVERS = [
|
|
|
1529
1409
|
required: false,
|
|
1530
1410
|
description: "Sentry Auth Token",
|
|
1531
1411
|
envVar: "SENTRY_AUTH_TOKEN"
|
|
1532
|
-
},
|
|
1533
|
-
{
|
|
1534
|
-
name: "org",
|
|
1535
|
-
type: "string",
|
|
1536
|
-
required: false,
|
|
1537
|
-
description: "Sentry Organization slug"
|
|
1538
|
-
}
|
|
1539
|
-
],
|
|
1540
|
-
installInstructions: "Create an auth token at https://sentry.io/settings/account/api/auth-tokens/"
|
|
1541
|
-
},
|
|
1542
|
-
{
|
|
1543
|
-
id: "datadog",
|
|
1544
|
-
name: "Datadog",
|
|
1545
|
-
description: "Datadog monitoring and APM",
|
|
1546
|
-
package: "@anthropic/datadog-mcp",
|
|
1547
|
-
category: "monitoring",
|
|
1548
|
-
requiresConfig: true,
|
|
1549
|
-
configFields: [
|
|
1550
|
-
{
|
|
1551
|
-
name: "apiKey",
|
|
1552
|
-
type: "string",
|
|
1553
|
-
required: false,
|
|
1554
|
-
description: "Datadog API Key",
|
|
1555
|
-
envVar: "DD_API_KEY"
|
|
1556
|
-
},
|
|
1557
|
-
{
|
|
1558
|
-
name: "appKey",
|
|
1559
|
-
type: "string",
|
|
1560
|
-
required: false,
|
|
1561
|
-
description: "Datadog Application Key",
|
|
1562
|
-
envVar: "DD_APP_KEY"
|
|
1563
|
-
},
|
|
1564
|
-
{
|
|
1565
|
-
name: "site",
|
|
1566
|
-
type: "string",
|
|
1567
|
-
required: false,
|
|
1568
|
-
description: "Datadog site (e.g., datadoghq.com)",
|
|
1569
|
-
default: "datadoghq.com"
|
|
1570
1412
|
}
|
|
1571
1413
|
],
|
|
1572
|
-
installInstructions: "
|
|
1414
|
+
installInstructions: "For Claude Code: claude mcp add --transport http sentry https://mcp.sentry.dev/mcp"
|
|
1573
1415
|
},
|
|
1574
1416
|
// ============================================
|
|
1575
1417
|
// COMMUNICATION
|
|
@@ -1577,8 +1419,8 @@ var MCP_SERVERS = [
|
|
|
1577
1419
|
{
|
|
1578
1420
|
id: "slack",
|
|
1579
1421
|
name: "Slack",
|
|
1580
|
-
description: "Slack messaging and
|
|
1581
|
-
package: "@
|
|
1422
|
+
description: "Slack messaging, channels, and workspace interaction",
|
|
1423
|
+
package: "@modelcontextprotocol/server-slack",
|
|
1582
1424
|
category: "communication",
|
|
1583
1425
|
requiresConfig: true,
|
|
1584
1426
|
configFields: [
|
|
@@ -1592,192 +1434,120 @@ var MCP_SERVERS = [
|
|
|
1592
1434
|
],
|
|
1593
1435
|
installInstructions: "Create a Slack app at https://api.slack.com/apps and install to your workspace."
|
|
1594
1436
|
},
|
|
1595
|
-
{
|
|
1596
|
-
id: "discord",
|
|
1597
|
-
name: "Discord",
|
|
1598
|
-
description: "Discord bot and server management",
|
|
1599
|
-
package: "@anthropic/discord-mcp",
|
|
1600
|
-
category: "communication",
|
|
1601
|
-
requiresConfig: true,
|
|
1602
|
-
configFields: [
|
|
1603
|
-
{
|
|
1604
|
-
name: "token",
|
|
1605
|
-
type: "string",
|
|
1606
|
-
required: false,
|
|
1607
|
-
description: "Discord Bot Token",
|
|
1608
|
-
envVar: "DISCORD_BOT_TOKEN"
|
|
1609
|
-
}
|
|
1610
|
-
],
|
|
1611
|
-
installInstructions: "Create a bot at https://discord.com/developers/applications"
|
|
1612
|
-
},
|
|
1613
1437
|
// ============================================
|
|
1614
1438
|
// DESIGN
|
|
1615
1439
|
// ============================================
|
|
1616
1440
|
{
|
|
1617
1441
|
id: "figma",
|
|
1618
1442
|
name: "Figma",
|
|
1619
|
-
description: "Figma
|
|
1620
|
-
package: "
|
|
1443
|
+
description: "Figma layout information for AI coding agents",
|
|
1444
|
+
package: "figma-developer-mcp",
|
|
1621
1445
|
category: "design",
|
|
1622
1446
|
requiresConfig: true,
|
|
1623
1447
|
configFields: [
|
|
1624
1448
|
{
|
|
1625
|
-
name: "
|
|
1449
|
+
name: "apiKey",
|
|
1626
1450
|
type: "string",
|
|
1627
|
-
required:
|
|
1451
|
+
required: true,
|
|
1628
1452
|
description: "Figma Personal Access Token",
|
|
1629
|
-
envVar: "
|
|
1453
|
+
envVar: "FIGMA_API_KEY"
|
|
1630
1454
|
}
|
|
1631
1455
|
],
|
|
1632
|
-
installInstructions: "Create
|
|
1456
|
+
installInstructions: "Create token at https://www.figma.com/developers/api#access-tokens"
|
|
1633
1457
|
},
|
|
1634
|
-
// ============================================
|
|
1635
|
-
// PAYMENTS
|
|
1636
|
-
// ============================================
|
|
1637
1458
|
{
|
|
1638
|
-
id: "
|
|
1639
|
-
name: "
|
|
1640
|
-
description: "
|
|
1641
|
-
package: "@
|
|
1642
|
-
category: "
|
|
1643
|
-
requiresConfig:
|
|
1644
|
-
|
|
1645
|
-
{
|
|
1646
|
-
name: "secretKey",
|
|
1647
|
-
type: "string",
|
|
1648
|
-
required: false,
|
|
1649
|
-
description: "Stripe Secret Key",
|
|
1650
|
-
envVar: "STRIPE_SECRET_KEY"
|
|
1651
|
-
}
|
|
1652
|
-
],
|
|
1653
|
-
installInstructions: "Find your API keys at https://dashboard.stripe.com/apikeys (use test keys for development)"
|
|
1459
|
+
id: "shadcn",
|
|
1460
|
+
name: "shadcn/ui",
|
|
1461
|
+
description: "shadcn/ui component docs, installation, and code generation",
|
|
1462
|
+
package: "@heilgar/shadcn-ui-mcp-server",
|
|
1463
|
+
category: "ui-library",
|
|
1464
|
+
requiresConfig: false,
|
|
1465
|
+
installInstructions: "Supports npm, pnpm, yarn, and bun package managers."
|
|
1654
1466
|
},
|
|
1655
|
-
// ============================================
|
|
1656
|
-
// SEARCH
|
|
1657
|
-
// ============================================
|
|
1658
1467
|
{
|
|
1659
|
-
id: "
|
|
1660
|
-
name: "
|
|
1661
|
-
description: "
|
|
1662
|
-
package: "@
|
|
1663
|
-
category: "
|
|
1468
|
+
id: "magic-ui",
|
|
1469
|
+
name: "21st.dev Magic",
|
|
1470
|
+
description: "AI-driven UI component generation through natural language",
|
|
1471
|
+
package: "@21st-dev/magic",
|
|
1472
|
+
category: "ui-library",
|
|
1664
1473
|
requiresConfig: true,
|
|
1665
1474
|
configFields: [
|
|
1666
|
-
{
|
|
1667
|
-
name: "appId",
|
|
1668
|
-
type: "string",
|
|
1669
|
-
required: false,
|
|
1670
|
-
description: "Algolia Application ID",
|
|
1671
|
-
envVar: "ALGOLIA_APP_ID"
|
|
1672
|
-
},
|
|
1673
1475
|
{
|
|
1674
1476
|
name: "apiKey",
|
|
1675
1477
|
type: "string",
|
|
1676
|
-
required:
|
|
1677
|
-
description: "
|
|
1678
|
-
envVar: "
|
|
1478
|
+
required: true,
|
|
1479
|
+
description: "21st.dev Magic API Key",
|
|
1480
|
+
envVar: "TWENTYFIRST_API_KEY"
|
|
1679
1481
|
}
|
|
1680
1482
|
],
|
|
1681
|
-
installInstructions: "
|
|
1682
|
-
},
|
|
1683
|
-
{
|
|
1684
|
-
id: "elasticsearch",
|
|
1685
|
-
name: "Elasticsearch",
|
|
1686
|
-
description: "Elasticsearch search engine",
|
|
1687
|
-
package: "@anthropic/elasticsearch-mcp",
|
|
1688
|
-
category: "search",
|
|
1689
|
-
requiresConfig: true,
|
|
1690
|
-
configFields: [
|
|
1691
|
-
{
|
|
1692
|
-
name: "node",
|
|
1693
|
-
type: "string",
|
|
1694
|
-
required: false,
|
|
1695
|
-
description: "Elasticsearch node URL",
|
|
1696
|
-
envVar: "ELASTICSEARCH_NODE",
|
|
1697
|
-
default: "http://localhost:9200"
|
|
1698
|
-
},
|
|
1699
|
-
{
|
|
1700
|
-
name: "apiKey",
|
|
1701
|
-
type: "string",
|
|
1702
|
-
required: false,
|
|
1703
|
-
description: "Elasticsearch API Key (optional)",
|
|
1704
|
-
envVar: "ELASTICSEARCH_API_KEY"
|
|
1705
|
-
}
|
|
1706
|
-
]
|
|
1483
|
+
installInstructions: "Get API key at https://21st.dev/magic/console"
|
|
1707
1484
|
},
|
|
1708
1485
|
// ============================================
|
|
1709
|
-
//
|
|
1486
|
+
// PAYMENTS
|
|
1710
1487
|
// ============================================
|
|
1711
1488
|
{
|
|
1712
|
-
id: "
|
|
1713
|
-
name: "
|
|
1714
|
-
description: "
|
|
1715
|
-
package: "@
|
|
1716
|
-
category: "
|
|
1489
|
+
id: "stripe",
|
|
1490
|
+
name: "Stripe",
|
|
1491
|
+
description: "Stripe payments API with MCP support via Agent Toolkit",
|
|
1492
|
+
package: "@stripe/agent-toolkit",
|
|
1493
|
+
category: "payments",
|
|
1717
1494
|
requiresConfig: true,
|
|
1718
1495
|
configFields: [
|
|
1719
1496
|
{
|
|
1720
|
-
name: "
|
|
1497
|
+
name: "secretKey",
|
|
1721
1498
|
type: "string",
|
|
1722
1499
|
required: false,
|
|
1723
|
-
description: "
|
|
1724
|
-
envVar: "
|
|
1500
|
+
description: "Stripe Secret Key",
|
|
1501
|
+
envVar: "STRIPE_SECRET_KEY"
|
|
1725
1502
|
}
|
|
1726
1503
|
],
|
|
1727
|
-
installInstructions: "Get
|
|
1504
|
+
installInstructions: "Get API keys at https://dashboard.stripe.com/apikeys. Run: npx -y @stripe/mcp --tools=all --api-key=YOUR_KEY"
|
|
1728
1505
|
},
|
|
1729
1506
|
{
|
|
1730
|
-
id: "
|
|
1731
|
-
name: "
|
|
1732
|
-
description: "
|
|
1733
|
-
package: "
|
|
1734
|
-
category: "
|
|
1507
|
+
id: "mercadopago",
|
|
1508
|
+
name: "Mercado Pago",
|
|
1509
|
+
description: "Mercado Pago payments, refunds, and customer management",
|
|
1510
|
+
package: "mercado-pago-mcp",
|
|
1511
|
+
category: "payments",
|
|
1735
1512
|
requiresConfig: true,
|
|
1736
1513
|
configFields: [
|
|
1737
1514
|
{
|
|
1738
|
-
name: "
|
|
1515
|
+
name: "accessToken",
|
|
1739
1516
|
type: "string",
|
|
1740
|
-
required:
|
|
1741
|
-
description: "
|
|
1742
|
-
envVar: "
|
|
1517
|
+
required: true,
|
|
1518
|
+
description: "Mercado Pago Access Token",
|
|
1519
|
+
envVar: "MERCADOPAGO_ACCESS_TOKEN"
|
|
1743
1520
|
},
|
|
1744
1521
|
{
|
|
1745
1522
|
name: "environment",
|
|
1746
1523
|
type: "string",
|
|
1747
1524
|
required: false,
|
|
1748
|
-
description: "
|
|
1749
|
-
|
|
1525
|
+
description: "Environment (sandbox or production)",
|
|
1526
|
+
default: "sandbox"
|
|
1750
1527
|
}
|
|
1751
1528
|
],
|
|
1752
|
-
installInstructions: "Get credentials at https://
|
|
1529
|
+
installInstructions: "Get credentials at https://www.mercadopago.com/developers/panel/app"
|
|
1753
1530
|
},
|
|
1754
1531
|
// ============================================
|
|
1755
|
-
//
|
|
1532
|
+
// SEARCH
|
|
1756
1533
|
// ============================================
|
|
1757
1534
|
{
|
|
1758
|
-
id: "
|
|
1759
|
-
name: "
|
|
1760
|
-
description: "
|
|
1761
|
-
package: "@
|
|
1762
|
-
category: "
|
|
1535
|
+
id: "brave-search",
|
|
1536
|
+
name: "Brave Search",
|
|
1537
|
+
description: "Web and local search using Brave Search API",
|
|
1538
|
+
package: "@modelcontextprotocol/server-brave-search",
|
|
1539
|
+
category: "search",
|
|
1763
1540
|
requiresConfig: true,
|
|
1764
1541
|
configFields: [
|
|
1765
1542
|
{
|
|
1766
|
-
name: "
|
|
1767
|
-
type: "string",
|
|
1768
|
-
required: false,
|
|
1769
|
-
description: "Vault server address",
|
|
1770
|
-
envVar: "VAULT_ADDR",
|
|
1771
|
-
default: "http://127.0.0.1:8200"
|
|
1772
|
-
},
|
|
1773
|
-
{
|
|
1774
|
-
name: "token",
|
|
1543
|
+
name: "apiKey",
|
|
1775
1544
|
type: "string",
|
|
1776
1545
|
required: false,
|
|
1777
|
-
description: "
|
|
1778
|
-
envVar: "
|
|
1546
|
+
description: "Brave Search API Key",
|
|
1547
|
+
envVar: "BRAVE_API_KEY"
|
|
1779
1548
|
}
|
|
1780
|
-
]
|
|
1549
|
+
],
|
|
1550
|
+
installInstructions: "Get an API key at https://brave.com/search/api/"
|
|
1781
1551
|
}
|
|
1782
1552
|
];
|
|
1783
1553
|
|