@alpic-ai/api 1.128.0 → 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 +132 -30
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -84,7 +84,7 @@ z.object({
|
|
|
84
84
|
});
|
|
85
85
|
const toolDefinitionSchema = z.object({
|
|
86
86
|
name: z.string(),
|
|
87
|
-
title: z.string().optional(),
|
|
87
|
+
title: z.string().optional().describe("Human-friendly name for the tool, used in the UI. If not provided, `name` will be used."),
|
|
88
88
|
description: z.string().optional(),
|
|
89
89
|
annotations: z.object({
|
|
90
90
|
readOnlyHint: z.boolean().optional(),
|
|
@@ -168,7 +168,15 @@ chatgptSubmissionFormDataSchema.pick({
|
|
|
168
168
|
serverUrl: true,
|
|
169
169
|
tools: true,
|
|
170
170
|
authentication: true
|
|
171
|
-
})
|
|
171
|
+
});
|
|
172
|
+
chatgptSubmissionFormDataSchema.pick({
|
|
173
|
+
tagline: true,
|
|
174
|
+
description: true,
|
|
175
|
+
category: true,
|
|
176
|
+
testCases: true,
|
|
177
|
+
negativeTestCases: true,
|
|
178
|
+
toolJustifications: true
|
|
179
|
+
});
|
|
172
180
|
const claudeCategorySchema = z.enum([
|
|
173
181
|
"Business & Productivity",
|
|
174
182
|
"Communication",
|
|
@@ -228,34 +236,121 @@ Rules:
|
|
|
228
236
|
(1) Do NOT include the words 'MCP' or 'Server' — these are auto-rejected.
|
|
229
237
|
(2) Use your brand/product name, e.g. 'Notion', 'Linear', 'Slack'.
|
|
230
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.`),
|
|
231
|
-
mcpUrlType: claudeMcpUrlTypeSchema.describe(
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
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:
|
|
241
262
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
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.`)
|
|
259
354
|
});
|
|
260
355
|
claudeSubmissionFormDataSchema.pick({
|
|
261
356
|
companyName: true,
|
|
@@ -264,10 +359,17 @@ claudeSubmissionFormDataSchema.pick({
|
|
|
264
359
|
serverUrl: true,
|
|
265
360
|
tools: true,
|
|
266
361
|
readWriteCapabilities: true,
|
|
362
|
+
isMcpApp: true,
|
|
267
363
|
transportSupport: true,
|
|
268
364
|
primaryContactEmail: true,
|
|
269
365
|
primaryContactName: true
|
|
270
|
-
})
|
|
366
|
+
});
|
|
367
|
+
claudeSubmissionFormDataSchema.pick({
|
|
368
|
+
tagline: true,
|
|
369
|
+
description: true,
|
|
370
|
+
categories: true,
|
|
371
|
+
testCases: true
|
|
372
|
+
});
|
|
271
373
|
const submissionMetaFieldsSchema = z.object({
|
|
272
374
|
id: z.string(),
|
|
273
375
|
environmentId: z.string(),
|