@alpic-ai/api 1.127.1 → 1.129.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/index.mjs +321 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -71,6 +71,327 @@ const auditReportWithScreenshotsSchema = auditReportSchema.extend({ widgetScreen
|
|
|
71
71
|
chatgpt: widgetScreenshotSchema.optional(),
|
|
72
72
|
claudeai: widgetScreenshotSchema.optional()
|
|
73
73
|
}) });
|
|
74
|
+
z.object({
|
|
75
|
+
id: z.string(),
|
|
76
|
+
createdAt: z.coerce.date(),
|
|
77
|
+
environmentId: z.string(),
|
|
78
|
+
content: z.string(),
|
|
79
|
+
source: z.enum(["model", "user"])
|
|
80
|
+
});
|
|
81
|
+
z.object({
|
|
82
|
+
content: z.string(),
|
|
83
|
+
source: z.enum(["model", "user"])
|
|
84
|
+
});
|
|
85
|
+
const toolDefinitionSchema = z.object({
|
|
86
|
+
name: z.string(),
|
|
87
|
+
title: z.string().optional().describe("Human-friendly name for the tool, used in the UI. If not provided, `name` will be used."),
|
|
88
|
+
description: z.string().optional(),
|
|
89
|
+
annotations: z.object({
|
|
90
|
+
readOnlyHint: z.boolean().optional(),
|
|
91
|
+
destructiveHint: z.boolean().optional(),
|
|
92
|
+
openWorldHint: z.boolean().optional(),
|
|
93
|
+
idempotentHint: z.boolean().optional()
|
|
94
|
+
}).optional()
|
|
95
|
+
});
|
|
96
|
+
const positiveTestCaseSchema = z.object({
|
|
97
|
+
scenario: z.string(),
|
|
98
|
+
userPrompt: z.string(),
|
|
99
|
+
toolTriggered: z.string().optional(),
|
|
100
|
+
expectedOutput: z.string().optional()
|
|
101
|
+
}).partial().describe("Each case: Scenario, User prompt, Tool triggered, Expected output.");
|
|
102
|
+
/** Accepts either a valid email or URL. */
|
|
103
|
+
const supportChannelSchema = z.string().refine((value) => z.email().safeParse(value).success || z.url().safeParse(value).success, { error: "Must be a valid email or URL" });
|
|
104
|
+
const chatgptCategorySchema = z.enum([
|
|
105
|
+
"BUSINESS",
|
|
106
|
+
"COLLABORATION",
|
|
107
|
+
"DESIGN",
|
|
108
|
+
"DEVELOPER_TOOLS",
|
|
109
|
+
"EDUCATION",
|
|
110
|
+
"ENTERTAINMENT",
|
|
111
|
+
"FINANCE",
|
|
112
|
+
"FOOD",
|
|
113
|
+
"LIFESTYLE",
|
|
114
|
+
"NEWS",
|
|
115
|
+
"PRODUCTIVITY",
|
|
116
|
+
"SHOPPING",
|
|
117
|
+
"TRAVEL"
|
|
118
|
+
]);
|
|
119
|
+
const chatgptAuthenticationSchema = z.enum(["No auth needed", "OAuth 2.0"]);
|
|
120
|
+
const chatgptAllowedCountriesSchema = z.enum(["Allow all", "Restrict to specific countries"]);
|
|
121
|
+
const negativeTestCaseSchema = z.object({
|
|
122
|
+
scenario: z.string(),
|
|
123
|
+
userPrompt: z.string()
|
|
124
|
+
}).partial().describe("Each case: Scenario + User prompt (the app should NOT trigger).");
|
|
125
|
+
const chatgptToolJustificationSchema = z.object({
|
|
126
|
+
toolName: z.string(),
|
|
127
|
+
readOnlyJustification: z.string(),
|
|
128
|
+
openWorldJustification: z.string(),
|
|
129
|
+
destructiveJustification: z.string()
|
|
130
|
+
}).describe("Per-tool justification of each MCP annotation value (one sentence per hint).");
|
|
131
|
+
const chatgptTranslationSchema = z.object({
|
|
132
|
+
locale: z.string(),
|
|
133
|
+
tagline: z.string().optional(),
|
|
134
|
+
description: z.string().optional()
|
|
135
|
+
}).describe("Locale-scoped override for tagline + description. English (US) is the default.");
|
|
136
|
+
/**
|
|
137
|
+
* Field order mirrors the ChatGPT (OpenAI) submission spreadsheet, grouped by section.
|
|
138
|
+
* When adding/removing/reordering fields, keep this in sync with the sheet.
|
|
139
|
+
*/
|
|
140
|
+
const chatgptSubmissionFormDataSchema = z.object({
|
|
141
|
+
logoLight: z.string().describe("Logo icon for light mode. Square PNG, no borders or rounded corners (clients apply circular cropping)."),
|
|
142
|
+
logoDark: z.string().describe("Logo icon for dark mode. Square PNG. Same specs as the light icon."),
|
|
143
|
+
appName: z.string().describe("The name users will see in ChatGPT and in the Apps Directory."),
|
|
144
|
+
tagline: z.string().max(30).describe("Plain-language phrase focused on function and user value. 30 chars max."),
|
|
145
|
+
description: z.string().describe("Clear, engaging description highlighting what the app does and why people will love it. Appears publicly on the directory page."),
|
|
146
|
+
category: chatgptCategorySchema.describe("Category from the OpenAI taxonomy."),
|
|
147
|
+
developerName: z.string().describe("Developer name shown publicly on the app's directory page."),
|
|
148
|
+
companyUrl: z.url().describe("Your company's main website URL."),
|
|
149
|
+
supportChannel: supportChannelSchema.describe("Customer support URL or email address."),
|
|
150
|
+
privacyPolicyUrl: z.url().describe("URL to your privacy policy."),
|
|
151
|
+
termsOfServiceUrl: z.url().describe("URL to the app's terms of service."),
|
|
152
|
+
demoRecordingUrl: z.url().describe("URL to a video demonstrating the app, recorded via OpenAI Developer Mode. Cover all main use cases on web, iOS, and Android."),
|
|
153
|
+
appCommerceAndPurchasing: z.boolean().describe("Checkbox: 'My app links or directs users out of ChatGPT to make purchases.' Defaults to false. Verify the app does not offer digital goods."),
|
|
154
|
+
serverUrl: z.url().describe("URL of the MCP server."),
|
|
155
|
+
authentication: chatgptAuthenticationSchema.describe("OAuth 2.0 or No auth. OAuth configuration is auto-discovered from the MCP server's metadata."),
|
|
156
|
+
tools: z.array(toolDefinitionSchema).describe("List of tools exposed by the MCP server (auto-populated from the production server's manifest)."),
|
|
157
|
+
toolJustifications: z.array(chatgptToolJustificationSchema).describe("Per-tool justification of `readOnlyHint`, `openWorldHint`, and `destructiveHint` annotation values."),
|
|
158
|
+
testCases: z.array(positiveTestCaseSchema).describe("At least 5 positive test cases. Each: Scenario, User prompt, Tool triggered, Expected output. Coverage over all major use cases."),
|
|
159
|
+
negativeTestCases: z.array(negativeTestCaseSchema).describe("3 negative test cases — prompts where the app should NOT trigger but the model might think it's relevant."),
|
|
160
|
+
screenshots: z.array(z.url()).describe("URLs of in-app screenshots. Widget apps must show the widget UI; non-widget apps show the model response. Min 1, max 4. First three are public."),
|
|
161
|
+
translations: z.array(chatgptTranslationSchema).describe("Per-locale translation of tagline + description. English (US) is the default."),
|
|
162
|
+
allowedCountries: chatgptAllowedCountriesSchema.describe("'Allow all' or restrict to a specific list. See OpenAI's supported countries list."),
|
|
163
|
+
releaseNotes: z.string().describe("Publicly displayed on the app details page.")
|
|
164
|
+
});
|
|
165
|
+
chatgptSubmissionFormDataSchema.pick({
|
|
166
|
+
appName: true,
|
|
167
|
+
developerName: true,
|
|
168
|
+
serverUrl: true,
|
|
169
|
+
tools: true,
|
|
170
|
+
authentication: true
|
|
171
|
+
});
|
|
172
|
+
chatgptSubmissionFormDataSchema.pick({
|
|
173
|
+
tagline: true,
|
|
174
|
+
description: true,
|
|
175
|
+
category: true,
|
|
176
|
+
testCases: true,
|
|
177
|
+
negativeTestCases: true,
|
|
178
|
+
toolJustifications: true
|
|
179
|
+
});
|
|
180
|
+
const claudeCategorySchema = z.enum([
|
|
181
|
+
"Business & Productivity",
|
|
182
|
+
"Communication",
|
|
183
|
+
"Data & Analytics",
|
|
184
|
+
"Development tools",
|
|
185
|
+
"Financial Services",
|
|
186
|
+
"Consumer Health",
|
|
187
|
+
"Health & Life Sciences",
|
|
188
|
+
"Media & Entertainment",
|
|
189
|
+
"Commerce & Shopping"
|
|
190
|
+
]);
|
|
191
|
+
z.enum([
|
|
192
|
+
"No auth needed",
|
|
193
|
+
"OAuth 2.0",
|
|
194
|
+
"Custom URL"
|
|
195
|
+
]);
|
|
196
|
+
const claudeMcpUrlTypeSchema = z.enum(["Universal URL", "Custom MCP URLs"]);
|
|
197
|
+
z.enum(["Static OAuth Client", "Dynamic OAuth Client (DCR / CIMD)"]);
|
|
198
|
+
const claudeReadWriteCapabilitiesSchema = z.enum([
|
|
199
|
+
"Read only",
|
|
200
|
+
"Write only",
|
|
201
|
+
"Read + write"
|
|
202
|
+
]);
|
|
203
|
+
const claudeTransportSchema = z.enum(["Streamable HTTP", "SSE"]);
|
|
204
|
+
const claudeThirdPartySchema = z.enum([
|
|
205
|
+
"Web access (open web fetch / scraping / arbitrary URLs)",
|
|
206
|
+
"Third-party AI model integration",
|
|
207
|
+
"Third-party data retrieval (via workflow / aggregator)",
|
|
208
|
+
"Third-party data modification (via workflow / aggregator)",
|
|
209
|
+
"N/A"
|
|
210
|
+
]);
|
|
211
|
+
const claudeDataHandlingSchema = z.enum([
|
|
212
|
+
"Server only accesses data explicitly requested by user",
|
|
213
|
+
"No data is stored beyond session requirements",
|
|
214
|
+
"Data transmission is encrypted (HTTPS / TLS)",
|
|
215
|
+
"GDPR compliant (if applicable)"
|
|
216
|
+
]);
|
|
217
|
+
const claudeSponsoredContentSchema = z.enum([
|
|
218
|
+
"No, there is no sponsored content or advertisements",
|
|
219
|
+
"Yes, there are banner ads or other paid visual elements",
|
|
220
|
+
"Yes, returned content or ranking is impacted by sponsorship or ad placement"
|
|
221
|
+
]);
|
|
222
|
+
/**
|
|
223
|
+
* Field order mirrors the Claude (Anthropic) submission spreadsheet, grouped by section.
|
|
224
|
+
* When adding/removing/reordering fields, keep this in sync with the sheet.
|
|
225
|
+
*/
|
|
226
|
+
const claudeSubmissionFormDataSchema = z.object({
|
|
227
|
+
companyName: z.string().describe("Enter your company's legal name or the name under which your product is publicly known. This is used for internal tracking and may appear in directory listings."),
|
|
228
|
+
companyUrl: z.url().describe("Your company's main website URL, e.g. https://mycompany.com. Must be a valid URL with https://. This should be the root domain of the company behind this MCP server."),
|
|
229
|
+
primaryContactName: z.string().describe("Full name of the person Anthropic should contact about this submission. This person will receive review feedback, approval notices, and any follow-up questions."),
|
|
230
|
+
primaryContactEmail: z.email().describe("Business email for the primary contact. Must be a valid email address. Anthropic uses this to communicate about your submission status, required changes, and post-listing issues. Avoid using personal email addresses."),
|
|
231
|
+
primaryContactRole: z.string().optional().describe("The job title or role of the primary contact (e.g. 'CTO', 'Developer Relations Lead', 'Founder'). Optional but helps Anthropic route questions to the right person."),
|
|
232
|
+
anthropicPointOfContact: z.string().optional().describe("If you have a direct contact at Anthropic (e.g. from a partnership or sales conversation), enter their name here. This is optional but can greatly help expedite the review process. Leave blank if you don't have one."),
|
|
233
|
+
appName: z.string().describe(`The public display name for your connector as it will appear in the Connectors Directory.
|
|
234
|
+
|
|
235
|
+
Rules:
|
|
236
|
+
(1) Do NOT include the words 'MCP' or 'Server' — these are auto-rejected.
|
|
237
|
+
(2) Use your brand/product name, e.g. 'Notion', 'Linear', 'Slack'.
|
|
238
|
+
(3) You must own or have the right to use this brand name. For example, don't call it 'Google Drive Helper' if you're not Google.`),
|
|
239
|
+
mcpUrlType: claudeMcpUrlTypeSchema.describe(`Choose how your server URL works:
|
|
240
|
+
• 'Universal URL': one single URL that all users connect to (most common). Example: https://mcp.myapp.com
|
|
241
|
+
• 'Custom MCP URLs': each user gets their own unique URL (e.g. based on their workspace or instance).
|
|
242
|
+
If you choose this, you'll need to provide both a signup URL and a regex pattern that matches valid server URLs for your service.`),
|
|
243
|
+
serverUrl: z.url().describe(`If 'Universal URL': enter the full https:// URL where your MCP server is hosted and reachable. Example: https://mcp.myapp.com/
|
|
244
|
+
If 'Custom MCP URLs': provide (1) the signup/onboarding URL where users create an account, and (2) a regex pattern that matches all valid server URLs for your service (e.g. https://[a-z0-9-]+\\.myapp\\.com/mcp). The server must be publicly accessible without VPN or whitelisting required.`),
|
|
245
|
+
tagline: z.string().max(55).describe(`A very short, punchy description shown below your server name in the directory listing. Max 55 characters including spaces.
|
|
246
|
+
Think of it as a subtitle or elevator pitch fragment. Example: 'Manage tasks and projects in Linear' or 'Search and read your Notion workspace'. Avoid generic phrases like 'The best MCP server for...'`),
|
|
247
|
+
description: z.string().describe(`A 50–100 word description of what your MCP server does. This appears in the connector's detail page inside Claude. Write it from a user perspective: what can users do with this connector? What are the key features/tools? Avoid marketing fluff. Be specific. Example: 'Connect Claude to your Linear workspace. Create and update issues, search projects, manage teams, and track engineering cycles, all from within Claude.' Anthropic reviewers check this for accuracy against your actual tools.`),
|
|
248
|
+
testCases: z.array(positiveTestCaseSchema).describe(`Provide at least 3 concrete use cases, each with an example prompt a user could type to Claude. These are critical: Anthropic reviewers literally test your server using these prompts. Good examples are specific and demonstrate real value.
|
|
249
|
+
Best format: [Use case]: [exact prompt]"
|
|
250
|
+
Example for a task manager:
|
|
251
|
+
1. Create a task: 'Create a task called Review Q3 report, due Friday, assigned to Alice'
|
|
252
|
+
2. Search tasks: 'Show me all open bugs in the Mobile project'
|
|
253
|
+
3. Update status: 'Mark the Deploy v2.1 task as done'"`),
|
|
254
|
+
connectionRequirements: z.string().describe(`Describe any prerequisites a user must have before they can connect your server. Be exhaustive. Examples of things to mention:
|
|
255
|
+
• Account type required (free vs paid plan)
|
|
256
|
+
• Admin permissions or specific roles needed
|
|
257
|
+
• Geographic restrictions (e.g. 'US only' or 'Not available in EU')
|
|
258
|
+
• If users need to provide their own server URL or instance domain
|
|
259
|
+
• Any setup steps needed before connecting (e.g. 'Enable API access in your account settings')
|
|
260
|
+
If there are genuinely no special requirements, write exactly: 'No special requirements.'`),
|
|
261
|
+
readWriteCapabilities: claudeReadWriteCapabilitiesSchema.describe(`Select the option that best describes what your server can do:
|
|
262
|
+
|
|
263
|
+
'Read Only': your tools only fetch/retrieve data (GET operations). Claude cannot modify anything via your server.
|
|
264
|
+
'Write Only': your tools only create/update/delete data (rare).
|
|
265
|
+
'Read + Write': your tools can both retrieve AND modify data (most common for full-featured connectors).
|
|
266
|
+
|
|
267
|
+
Note: Anthropic rejects catch-all tools that accept both safe (GET) and unsafe (POST, PUT, DELETE) HTTP methods via a parameter e.g. a single api_request(method, endpoint) tool. Each tool should have a fixed, specific purpose. `),
|
|
268
|
+
isMcpApp: z.boolean().describe(`Select 'Yes' if your MCP server renders interactive UI elements (aka widgets or views) inside the Claude conversation.
|
|
269
|
+
Select 'No' if your server only returns text/data responses.
|
|
270
|
+
If 'Yes', you will also be required to provide screenshots of your UI (see Promotional Images section). MCP Apps are displayed with a special badge in the directory.`),
|
|
271
|
+
thirdPartyConnectionsAndWebAccess: z.array(claudeThirdPartySchema).describe(`Multi-select all that apply to your server's behavior:
|
|
272
|
+
• 'Web access' — your server fetches arbitrary URLs, scrapes websites, or makes open-ended HTTP requests to the web (not just your own API).
|
|
273
|
+
• 'Third-party AI model integration' — your server calls another AI model (e.g. OpenAI, Gemini, Cohere) as part of its processing.
|
|
274
|
+
• 'Third-party data retrieval' — your server retrieves data via a workflow or aggregator platform (e.g. Zapier, Make, n8n) rather than calling your own API directly.
|
|
275
|
+
• 'Third-party data modification' — your server modifies data via such a platform.
|
|
276
|
+
• 'N/A' — your server only calls your own first-party API and does nothing else. Select this only if none of the above apply.`),
|
|
277
|
+
dataHandling: z.array(claudeDataHandlingSchema).describe(`Multi-select all data handling practices that accurately apply to your server. You must select at least 3. Key points:
|
|
278
|
+
• 'Server only accesses data explicitly requested by user' — your server doesn't silently read unrelated user data.
|
|
279
|
+
• 'No data is stored beyond session requirements' — you don't log or retain conversation data after the session.
|
|
280
|
+
• 'Data transmission is encrypted (HTTPS/TLS)' — all data in transit is encrypted. This should always apply for remote servers.
|
|
281
|
+
• 'GDPR compliant' — if you operate in the EU or serve EU users, check this only if you are genuinely compliant. Don't check it without having proper data processing agreements and procedures in place.
|
|
282
|
+
Note: These are attestations — you are legally agreeing to these practices by submitting the form.`),
|
|
283
|
+
personalDataHealthAccess: z.boolean().describe(`Select 'Yes' ONLY if your connector gives users access to their own personal health information — such as medical records, lab results, diagnoses, prescriptions, wearable health metrics (heart rate, sleep data, etc.), or mental health data.
|
|
284
|
+
Select 'No' for the vast majority of business/productivity/dev tools. When in doubt, select 'No'. This field triggers additional compliance review if 'Yes'.`),
|
|
285
|
+
categories: z.array(claudeCategorySchema).describe(`Select the category or categories that best describe your connector. This determines where it appears in the directory's browse experience. Choose the most specific fit:
|
|
286
|
+
• Business & Productivity — project management, CRM, HR, office tools
|
|
287
|
+
• Communication — email, chat, messaging, notifications
|
|
288
|
+
• Data & Analytics — dashboards, reporting, databases, BI tools
|
|
289
|
+
• Development tools — code repositories, CI/CD, issue trackers, monitoring
|
|
290
|
+
• Financial Services — accounting, invoicing, fintech (note: financial transaction execution is not permitted)
|
|
291
|
+
• Consumer Health — fitness, wellness, personal health tracking
|
|
292
|
+
• Health & Life Sciences — clinical, pharma, medical professional tools
|
|
293
|
+
• Media & Entertainment — content, publishing, streaming
|
|
294
|
+
• Commerce & Shopping — e-commerce, inventory, orders
|
|
295
|
+
Multiple categories are allowed if genuinely applicable.`),
|
|
296
|
+
sponsoredContentsOrAdvertisement: claudeSponsoredContentSchema.describe(`Be honest here — advertising is not permitted in the Connectors Directory per Anthropic's policy. Select the option that accurately describes your server:
|
|
297
|
+
• 'No, there is no sponsored content or advertisements' — the results your server returns are not influenced by paid placement or sponsorship. This is what almost all connectors should select.
|
|
298
|
+
• 'Yes, there are banner ads or other paid visual elements' — your UI includes visual ads. NOTE: this will likely lead to rejection, as Anthropic prohibits advertising in Claude.
|
|
299
|
+
• 'Yes, the returned content or ranking of returned content is impacted by sponsorship or ad placement' — paid results affect what you return. NOTE: this also likely leads to rejection.
|
|
300
|
+
If your server returns organic results from a platform that has ads in its own UI (but your API results are not affected by ads), select 'No'.`),
|
|
301
|
+
transportSupport: z.array(claudeTransportSchema).describe(`Select all transport protocols your server supports:
|
|
302
|
+
• 'Streamable HTTP' — the modern, recommended transport. Anthropic strongly recommends implementing this. This is the future-proof option and should be your default.
|
|
303
|
+
• 'SSE (Server-Sent Events)' — the older transport. SSE may be deprecated by Anthropic later in 2025/2026. If you currently only support SSE, you should plan to migrate to Streamable HTTP.
|
|
304
|
+
If you support both, select both. If you're building from scratch, implement Streamable HTTP only.`),
|
|
305
|
+
serverDocumentationLink: z.url().describe(`A public URL pointing to documentation that helps users understand and use your connector. This is displayed in the Directory listing and must be publicly accessible without login. Minimum requirements for the docs page:
|
|
306
|
+
• What the connector does and its key capabilities
|
|
307
|
+
• How to connect/set it up (step by step)
|
|
308
|
+
• What each tool does (or at least the main ones)
|
|
309
|
+
• How to troubleshoot common issues
|
|
310
|
+
• A support contact or channel
|
|
311
|
+
Acceptable formats: a dedicated docs page, a help center article, a README on GitHub, or a blog post — as long as it's comprehensive. Note: Anthropic requires public documentation to be live by your publish date.`),
|
|
312
|
+
privacyPolicyUrl: z.url().describe(`URL to your privacy policy. This is mandatory and displayed in the directory listing. Missing or incomplete privacy policies result in immediate rejection. Your privacy policy must cover:
|
|
313
|
+
• What data you collect (and how)
|
|
314
|
+
• How you use the collected data
|
|
315
|
+
• Where and how long you store it
|
|
316
|
+
• Whether you share data with third parties (and who)
|
|
317
|
+
• How users can contact you about data concerns
|
|
318
|
+
The policy must be publicly accessible. If you don't have one yet, create one before submitting — there are free generators online, but make sure it accurately reflects your actual practices. If you're GDPR-compliant, your policy should reflect that.`),
|
|
319
|
+
supportChannel: supportChannelSchema.describe(`A URL or email address where users can get help with your connector. This is displayed in the Directory listing. Acceptable options:
|
|
320
|
+
• Email address (e.g. support@myapp.com)
|
|
321
|
+
• Link to a GitHub Issues page
|
|
322
|
+
• Link to a help center or support article
|
|
323
|
+
• Link to a Discord/Slack community
|
|
324
|
+
• Link to your documentation's troubleshooting section
|
|
325
|
+
Also uses this to notify you of security or compliance issues, so make sure it's actively monitored.`),
|
|
326
|
+
testingCredentials: z.string().describe(`Provide login credentials for a test account that Anthropic reviewers can use to verify your server works end-to-end. Critical requirements:
|
|
327
|
+
• The account must have sample/demo data loaded — reviewers need to actually test your tools with real data.
|
|
328
|
+
• No 2FA — reviewers can't receive SMS codes. Disable 2FA on this account.
|
|
329
|
+
• If your service uses Google OAuth or another OAuth that requires email verification, use mcp-review@anthropic.com as the account email — Anthropic has access to this inbox.
|
|
330
|
+
• Credentials must remain valid for at least 30 days from submission.
|
|
331
|
+
• If your service requires API keys instead of a password, provide those.
|
|
332
|
+
Format suggestion: Username/email: xxx | Password: xxx | Any other notes`),
|
|
333
|
+
tools: z.array(toolDefinitionSchema).describe(`A comma-separated list of all tools your MCP server exposes. Use the format: tool_name (Human-Readable Name). The tool_name is the internal identifier (snake_case, max 64 characters). The Human-Readable Name is what users see.
|
|
334
|
+
Example: list_issues (List Issues), create_issue (Create Issue), update_issue (Update Issue), delete_issue (Delete Issue), search_issues (Search Issues)
|
|
335
|
+
Reviewers test every single tool you list here — don't list tools that don't work. Also: do not have a single catch-all tool like api_request(method, endpoint) — Anthropic rejects these. Each action should be its own purpose-built tool.`),
|
|
336
|
+
toolTitlesAnnotationsConfirmed: z.boolean().describe(`This is a compliance confirmation — check both boxes only if you have actually implemented these in your server code:
|
|
337
|
+
• 'I've specified user-friendly titles for all tools' — every tool has a 'title' annotation (a human-readable label, different from the tool name).
|
|
338
|
+
• 'I've specified accurate tool annotations for all tools' — every tool has the correct annotation: readOnlyHint: true for read operations (search, get, list, fetch), OR destructiveHint: true for write operations (create, update, delete, send).
|
|
339
|
+
This is the #1 reason submissions get rejected (30% of all rejections). Do not check these boxes without actually having implemented the annotations. See MCP spec for how to add them.`),
|
|
340
|
+
logoLight: z.string().describe(`Your connector's logo as displayed in the directory. Requirements:
|
|
341
|
+
• Format: SVG only
|
|
342
|
+
• Aspect ratio: square (1:1)
|
|
343
|
+
• Should work on both light and dark backgrounds (or you can provide separate light/dark versions)
|
|
344
|
+
• Provide via URL (Google Drive link is fine) or upload directly
|
|
345
|
+
Tip: use a simple, recognizable icon — not a full wordmark. The logo appears at small sizes in the directory grid.`),
|
|
346
|
+
screenshots: z.array(z.url()).describe(`Screenshots or promotional images of your connector in action within Claude. Strongly recommended for all connectors, and required for MCP Apps (interactive UI). Guidelines:
|
|
347
|
+
• 3–5 images is ideal
|
|
348
|
+
• Minimum 1000px width, PNG format preferred
|
|
349
|
+
• Crop to just the relevant part of the Claude interface (the tool response area)
|
|
350
|
+
• Show your connector doing something impressive and useful — real data, real results
|
|
351
|
+
• If you're an MCP App, include screenshots of your interactive UI elements
|
|
352
|
+
• Videos are also welcome
|
|
353
|
+
These images appear in your directory listing and are a key factor in driving user installs.`)
|
|
354
|
+
});
|
|
355
|
+
claudeSubmissionFormDataSchema.pick({
|
|
356
|
+
companyName: true,
|
|
357
|
+
appName: true,
|
|
358
|
+
mcpUrlType: true,
|
|
359
|
+
serverUrl: true,
|
|
360
|
+
tools: true,
|
|
361
|
+
readWriteCapabilities: true,
|
|
362
|
+
isMcpApp: true,
|
|
363
|
+
transportSupport: true,
|
|
364
|
+
primaryContactEmail: true,
|
|
365
|
+
primaryContactName: true
|
|
366
|
+
});
|
|
367
|
+
claudeSubmissionFormDataSchema.pick({
|
|
368
|
+
tagline: true,
|
|
369
|
+
description: true,
|
|
370
|
+
categories: true,
|
|
371
|
+
testCases: true
|
|
372
|
+
});
|
|
373
|
+
const submissionMetaFieldsSchema = z.object({
|
|
374
|
+
id: z.string(),
|
|
375
|
+
environmentId: z.string(),
|
|
376
|
+
createdAt: z.coerce.date(),
|
|
377
|
+
updatedAt: z.coerce.date()
|
|
378
|
+
});
|
|
379
|
+
const claudeSubmissionSchemaInternal = submissionMetaFieldsSchema.extend({
|
|
380
|
+
platform: z.literal("claudeai"),
|
|
381
|
+
formData: claudeSubmissionFormDataSchema.partial()
|
|
382
|
+
});
|
|
383
|
+
const chatgptSubmissionSchemaInternal = submissionMetaFieldsSchema.extend({
|
|
384
|
+
platform: z.literal("chatgpt"),
|
|
385
|
+
formData: chatgptSubmissionFormDataSchema.partial()
|
|
386
|
+
});
|
|
387
|
+
z.discriminatedUnion("platform", [claudeSubmissionSchemaInternal, chatgptSubmissionSchemaInternal]);
|
|
388
|
+
z.union([claudeSubmissionFormDataSchema.partial(), chatgptSubmissionFormDataSchema.partial()]);
|
|
389
|
+
const subscriptionPlanSchema = z.enum([
|
|
390
|
+
"pro",
|
|
391
|
+
"business",
|
|
392
|
+
"enterprise"
|
|
393
|
+
]);
|
|
394
|
+
z.object({ plan: subscriptionPlanSchema.nullable() });
|
|
74
395
|
//#endregion
|
|
75
396
|
//#region src/schemas.ts
|
|
76
397
|
const RESERVED_KEYS = [
|