ccjk 2.2.5 → 2.3.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/dist/chunks/codex.mjs +4 -84
- package/dist/chunks/index.mjs +698 -1
- package/dist/chunks/index2.mjs +1 -0
- package/dist/chunks/mcp-performance.mjs +2 -5
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/workflows.mjs +617 -84
- package/dist/cli.mjs +2 -2
- package/dist/i18n/locales/en/cloud-sync.json +147 -0
- package/dist/i18n/locales/en/marketplace.json +32 -1
- package/dist/i18n/locales/zh-CN/cloud-sync.json +147 -0
- package/dist/i18n/locales/zh-CN/marketplace.json +32 -1
- package/package.json +1 -1
package/dist/chunks/codex.mjs
CHANGED
|
@@ -117,66 +117,9 @@ const MCP_SERVICE_CONFIGS = [
|
|
|
117
117
|
requiresGui: true
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
|
-
{
|
|
121
|
-
id: "puppeteer",
|
|
122
|
-
requiresApiKey: false,
|
|
123
|
-
config: {
|
|
124
|
-
type: "stdio",
|
|
125
|
-
command: "npx",
|
|
126
|
-
args: ["-y", "@anthropic-ai/mcp-server-puppeteer@latest"],
|
|
127
|
-
env: {}
|
|
128
|
-
},
|
|
129
|
-
platformRequirements: {
|
|
130
|
-
platforms: ["macos", "windows"],
|
|
131
|
-
// GUI required - exclude headless Linux/WSL/Termux
|
|
132
|
-
requiresGui: true
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
120
|
// Anthropic Official MCP Services - Universal
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
requiresApiKey: false,
|
|
139
|
-
config: {
|
|
140
|
-
type: "stdio",
|
|
141
|
-
command: "npx",
|
|
142
|
-
args: ["-y", "@anthropic-ai/mcp-server-filesystem@latest", "."],
|
|
143
|
-
env: {}
|
|
144
|
-
}
|
|
145
|
-
// Works on all platforms - no special requirements
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
id: "memory",
|
|
149
|
-
requiresApiKey: false,
|
|
150
|
-
config: {
|
|
151
|
-
type: "stdio",
|
|
152
|
-
command: "npx",
|
|
153
|
-
args: ["-y", "@anthropic-ai/mcp-server-memory@latest"],
|
|
154
|
-
env: {}
|
|
155
|
-
}
|
|
156
|
-
// Works on all platforms - no special requirements
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
id: "sequential-thinking",
|
|
160
|
-
requiresApiKey: false,
|
|
161
|
-
config: {
|
|
162
|
-
type: "stdio",
|
|
163
|
-
command: "npx",
|
|
164
|
-
args: ["-y", "@anthropic-ai/mcp-server-sequential-thinking@latest"],
|
|
165
|
-
env: {}
|
|
166
|
-
}
|
|
167
|
-
// Works on all platforms - no special requirements
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
id: "fetch",
|
|
171
|
-
requiresApiKey: false,
|
|
172
|
-
config: {
|
|
173
|
-
type: "stdio",
|
|
174
|
-
command: "npx",
|
|
175
|
-
args: ["-y", "@anthropic-ai/mcp-server-fetch@latest"],
|
|
176
|
-
env: {}
|
|
177
|
-
}
|
|
178
|
-
// Works on all platforms - no special requirements
|
|
179
|
-
},
|
|
121
|
+
// Note: Removed low-value services: filesystem (buggy), puppeteer (duplicate of Playwright),
|
|
122
|
+
// memory (Claude has built-in memory), fetch (Claude has WebFetch), sequential-thinking (limited value)
|
|
180
123
|
{
|
|
181
124
|
id: "sqlite",
|
|
182
125
|
requiresApiKey: false,
|
|
@@ -225,32 +168,9 @@ async function getMcpServices() {
|
|
|
225
168
|
name: i18n.t("mcp:services.playwright.name"),
|
|
226
169
|
description: i18n.t("mcp:services.playwright.description")
|
|
227
170
|
},
|
|
228
|
-
{
|
|
229
|
-
id: "puppeteer",
|
|
230
|
-
name: i18n.t("mcp:services.puppeteer.name"),
|
|
231
|
-
description: i18n.t("mcp:services.puppeteer.description")
|
|
232
|
-
},
|
|
233
171
|
// Anthropic Official MCP Services
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
name: i18n.t("mcp:services.filesystem.name"),
|
|
237
|
-
description: i18n.t("mcp:services.filesystem.description")
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
id: "memory",
|
|
241
|
-
name: i18n.t("mcp:services.memory.name"),
|
|
242
|
-
description: i18n.t("mcp:services.memory.description")
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
id: "sequential-thinking",
|
|
246
|
-
name: i18n.t("mcp:services.sequential-thinking.name"),
|
|
247
|
-
description: i18n.t("mcp:services.sequential-thinking.description")
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
id: "fetch",
|
|
251
|
-
name: i18n.t("mcp:services.fetch.name"),
|
|
252
|
-
description: i18n.t("mcp:services.fetch.description")
|
|
253
|
-
},
|
|
172
|
+
// Note: Removed low-value services: filesystem (buggy), puppeteer (duplicate),
|
|
173
|
+
// memory (Claude built-in), fetch (Claude WebFetch), sequential-thinking (limited value)
|
|
254
174
|
{
|
|
255
175
|
id: "sqlite",
|
|
256
176
|
name: i18n.t("mcp:services.sqlite.name"),
|