@alpic-ai/api 1.128.0 → 1.129.1

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.
Files changed (2) hide show
  1. package/dist/index.mjs +150 -30
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -71,6 +71,16 @@ const auditReportWithScreenshotsSchema = auditReportSchema.extend({ widgetScreen
71
71
  chatgpt: widgetScreenshotSchema.optional(),
72
72
  claudeai: widgetScreenshotSchema.optional()
73
73
  }) });
74
+ z.enum([
75
+ "ongoing",
76
+ "deployed",
77
+ "failed",
78
+ "canceled"
79
+ ]);
80
+ z.object({
81
+ timestamp: z.coerce.date().optional(),
82
+ content: z.string().optional()
83
+ });
74
84
  z.object({
75
85
  id: z.string(),
76
86
  createdAt: z.coerce.date(),
@@ -82,9 +92,17 @@ z.object({
82
92
  content: z.string(),
83
93
  source: z.enum(["model", "user"])
84
94
  });
95
+ z.object({
96
+ id: z.string(),
97
+ teamId: z.string(),
98
+ email: z.string(),
99
+ expiresAt: z.coerce.date(),
100
+ createdAt: z.coerce.date(),
101
+ updatedAt: z.coerce.date()
102
+ });
85
103
  const toolDefinitionSchema = z.object({
86
104
  name: z.string(),
87
- title: z.string().optional(),
105
+ title: z.string().optional().describe("Human-friendly name for the tool, used in the UI. If not provided, `name` will be used."),
88
106
  description: z.string().optional(),
89
107
  annotations: z.object({
90
108
  readOnlyHint: z.boolean().optional(),
@@ -168,7 +186,15 @@ chatgptSubmissionFormDataSchema.pick({
168
186
  serverUrl: true,
169
187
  tools: true,
170
188
  authentication: true
171
- }).partial();
189
+ });
190
+ chatgptSubmissionFormDataSchema.pick({
191
+ tagline: true,
192
+ description: true,
193
+ category: true,
194
+ testCases: true,
195
+ negativeTestCases: true,
196
+ toolJustifications: true
197
+ });
172
198
  const claudeCategorySchema = z.enum([
173
199
  "Business & Productivity",
174
200
  "Communication",
@@ -228,34 +254,121 @@ Rules:
228
254
  (1) Do NOT include the words 'MCP' or 'Server' — these are auto-rejected.
229
255
  (2) Use your brand/product name, e.g. 'Notion', 'Linear', 'Slack'.
230
256
  (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("Universal URL = one URL serves all users. Custom MCP URLs = signup URL + regex matching per-user URLs."),
232
- serverUrl: z.url().describe("Production MCP server URL (https). Derived from the project's production environment by default."),
233
- tagline: z.string().max(55).describe("Short blurb shown below the server name. 55 chars max."),
234
- description: z.string().describe("50–100 words describing what the server does and its key capabilities. Lives on the directory listing."),
235
- testCases: z.array(positiveTestCaseSchema).describe("At least 3 use cases with example prompts showing the value of the connector."),
236
- connectionRequirements: z.string().describe(`Prerequisites before connecting:
237
- Free/premium account
238
- Admin seat
239
- Geographic availability
240
- Custom instance URL
257
+ mcpUrlType: claudeMcpUrlTypeSchema.describe(`Choose how your server URL works:
258
+ • 'Universal URL': one single URL that all users connect to (most common). Example: https://mcp.myapp.com
259
+ • 'Custom MCP URLs': each user gets their own unique URL (e.g. based on their workspace or instance).
260
+ 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.`),
261
+ 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/
262
+ 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.`),
263
+ 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.
264
+ 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...'`),
265
+ 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.`),
266
+ 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.
267
+ Best format: [Use case]: [exact prompt]"
268
+ Example for a task manager:
269
+ 1. Create a task: 'Create a task called Review Q3 report, due Friday, assigned to Alice'
270
+ 2. Search tasks: 'Show me all open bugs in the Mobile project'
271
+ 3. Update status: 'Mark the Deploy v2.1 task as done'"`),
272
+ connectionRequirements: z.string().describe(`Describe any prerequisites a user must have before they can connect your server. Be exhaustive. Examples of things to mention:
273
+ • Account type required (free vs paid plan)
274
+ • Admin permissions or specific roles needed
275
+ • Geographic restrictions (e.g. 'US only' or 'Not available in EU')
276
+ • If users need to provide their own server URL or instance domain
277
+ • Any setup steps needed before connecting (e.g. 'Enable API access in your account settings')
278
+ If there are genuinely no special requirements, write exactly: 'No special requirements.'`),
279
+ readWriteCapabilities: claudeReadWriteCapabilitiesSchema.describe(`Select the option that best describes what your server can do:
241
280
 
242
- State 'No special requirements.' if none.`),
243
- readWriteCapabilities: claudeReadWriteCapabilitiesSchema.describe("Inferred from the `readOnlyHint` annotations on the MCP tools."),
244
- isMcpApp: z.boolean().describe("True if the server exposes interactive UI elements (widgets). Inferred from the MCP connection."),
245
- thirdPartyConnectionsAndWebAccess: z.array(claudeThirdPartySchema).describe("Multi-select of what the server reaches out to (web, third-party AI, data aggregators)."),
246
- dataHandling: z.array(claudeDataHandlingSchema).describe("Multi-select of data-handling practices that accurately describe the server. Cannot be inferred user must self-declare."),
247
- personalDataHealthAccess: z.boolean().describe("True only if the connector gives users access to their own personal health data (medical records, lab results, health metrics)."),
248
- categories: z.array(claudeCategorySchema).describe("Multi-select of categories that best describe the server in the directory."),
249
- sponsoredContentsOrAdvertisement: claudeSponsoredContentSchema.describe("Disclose paid promotion or sponsored content. Cannot be filled by Alpic user must self-declare."),
250
- transportSupport: z.array(claudeTransportSchema).describe("Multi-select of transport protocols the server supports. Anthropic recommends Streamable HTTP (SSE may be deprecated later this year)."),
251
- serverDocumentationLink: z.url().describe("Public docs URL covering what the MCP does, setup, debugging, and self-serve support. The Alpic playground may be used."),
252
- privacyPolicyUrl: z.url().describe("URL to your privacy policy. Mandatory and displayed alongside the directory listing."),
253
- supportChannel: supportChannelSchema.describe("Link or email for user support (help center, GitHub issues, docs, support@…). Displayed alongside the directory listing."),
254
- testingCredentials: z.string().describe("Credentials for reviewers to verify functionality. Required if the server uses OAuth. No 2FA. Use mcp-review@anthropic.com if an accessible email is needed."),
255
- tools: z.array(toolDefinitionSchema).describe("List of tools exposed by the MCP server (auto-populated from the production server's manifest)."),
256
- toolTitlesAnnotationsConfirmed: z.boolean().describe("Confirmation that all tools have user-friendly titles and accurate annotations (readOnlyHint, destructiveHint, …)."),
257
- logoLight: z.string().describe("Server/app logo for light mode. Square 1:1 aspect ratio. SVG preferred for Claude."),
258
- screenshots: z.array(z.url()).describe("URLs of screenshots of the connector on Claude.ai or promo material. 3–5 ideal. ≥1000px width preferred, PNG, cropped to the app response. Videos welcome.")
281
+ 'Read Only': your tools only fetch/retrieve data (GET operations). Claude cannot modify anything via your server.
282
+ 'Write Only': your tools only create/update/delete data (rare).
283
+ 'Read + Write': your tools can both retrieve AND modify data (most common for full-featured connectors).
284
+
285
+ 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. `),
286
+ isMcpApp: z.boolean().describe(`Select 'Yes' if your MCP server renders interactive UI elements (aka widgets or views) inside the Claude conversation.
287
+ Select 'No' if your server only returns text/data responses.
288
+ 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.`),
289
+ thirdPartyConnectionsAndWebAccess: z.array(claudeThirdPartySchema).describe(`Multi-select all that apply to your server's behavior:
290
+ 'Web access' your server fetches arbitrary URLs, scrapes websites, or makes open-ended HTTP requests to the web (not just your own API).
291
+ 'Third-party AI model integration' — your server calls another AI model (e.g. OpenAI, Gemini, Cohere) as part of its processing.
292
+ '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.
293
+ 'Third-party data modification' your server modifies data via such a platform.
294
+ 'N/A' your server only calls your own first-party API and does nothing else. Select this only if none of the above apply.`),
295
+ 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:
296
+ 'Server only accesses data explicitly requested by user' your server doesn't silently read unrelated user data.
297
+ 'No data is stored beyond session requirements' you don't log or retain conversation data after the session.
298
+ • 'Data transmission is encrypted (HTTPS/TLS)' — all data in transit is encrypted. This should always apply for remote servers.
299
+ • '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.
300
+ Note: These are attestations — you are legally agreeing to these practices by submitting the form.`),
301
+ 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.
302
+ Select 'No' for the vast majority of business/productivity/dev tools. When in doubt, select 'No'. This field triggers additional compliance review if 'Yes'.`),
303
+ 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:
304
+ • Business & Productivity — project management, CRM, HR, office tools
305
+ • Communication — email, chat, messaging, notifications
306
+ • Data & Analytics — dashboards, reporting, databases, BI tools
307
+ • Development tools — code repositories, CI/CD, issue trackers, monitoring
308
+ • Financial Services — accounting, invoicing, fintech (note: financial transaction execution is not permitted)
309
+ • Consumer Health — fitness, wellness, personal health tracking
310
+ • Health & Life Sciences — clinical, pharma, medical professional tools
311
+ • Media & Entertainment — content, publishing, streaming
312
+ • Commerce & Shopping — e-commerce, inventory, orders
313
+ Multiple categories are allowed if genuinely applicable.`),
314
+ 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:
315
+ • '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.
316
+ • '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.
317
+ • '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.
318
+ 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'.`),
319
+ transportSupport: z.array(claudeTransportSchema).describe(`Select all transport protocols your server supports:
320
+ • 'Streamable HTTP' — the modern, recommended transport. Anthropic strongly recommends implementing this. This is the future-proof option and should be your default.
321
+ • '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.
322
+ If you support both, select both. If you're building from scratch, implement Streamable HTTP only.`),
323
+ 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:
324
+ • What the connector does and its key capabilities
325
+ • How to connect/set it up (step by step)
326
+ • What each tool does (or at least the main ones)
327
+ • How to troubleshoot common issues
328
+ • A support contact or channel
329
+ 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.`),
330
+ 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:
331
+ • What data you collect (and how)
332
+ • How you use the collected data
333
+ • Where and how long you store it
334
+ • Whether you share data with third parties (and who)
335
+ • How users can contact you about data concerns
336
+ 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.`),
337
+ 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:
338
+ • Email address (e.g. support@myapp.com)
339
+ • Link to a GitHub Issues page
340
+ • Link to a help center or support article
341
+ • Link to a Discord/Slack community
342
+ • Link to your documentation's troubleshooting section
343
+ Also uses this to notify you of security or compliance issues, so make sure it's actively monitored.`),
344
+ 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:
345
+ • The account must have sample/demo data loaded — reviewers need to actually test your tools with real data.
346
+ • No 2FA — reviewers can't receive SMS codes. Disable 2FA on this account.
347
+ • 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.
348
+ • Credentials must remain valid for at least 30 days from submission.
349
+ • If your service requires API keys instead of a password, provide those.
350
+ Format suggestion: Username/email: xxx | Password: xxx | Any other notes`),
351
+ 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.
352
+ Example: list_issues (List Issues), create_issue (Create Issue), update_issue (Update Issue), delete_issue (Delete Issue), search_issues (Search Issues)
353
+ 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.`),
354
+ toolTitlesAnnotationsConfirmed: z.boolean().describe(`This is a compliance confirmation — check both boxes only if you have actually implemented these in your server code:
355
+ • 'I've specified user-friendly titles for all tools' — every tool has a 'title' annotation (a human-readable label, different from the tool name).
356
+ • '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).
357
+ 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.`),
358
+ logoLight: z.string().describe(`Your connector's logo as displayed in the directory. Requirements:
359
+ • Format: SVG only
360
+ • Aspect ratio: square (1:1)
361
+ • Should work on both light and dark backgrounds (or you can provide separate light/dark versions)
362
+ • Provide via URL (Google Drive link is fine) or upload directly
363
+ Tip: use a simple, recognizable icon — not a full wordmark. The logo appears at small sizes in the directory grid.`),
364
+ 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:
365
+ • 3–5 images is ideal
366
+ • Minimum 1000px width, PNG format preferred
367
+ • Crop to just the relevant part of the Claude interface (the tool response area)
368
+ • Show your connector doing something impressive and useful — real data, real results
369
+ • If you're an MCP App, include screenshots of your interactive UI elements
370
+ • Videos are also welcome
371
+ These images appear in your directory listing and are a key factor in driving user installs.`)
259
372
  });
260
373
  claudeSubmissionFormDataSchema.pick({
261
374
  companyName: true,
@@ -264,10 +377,17 @@ claudeSubmissionFormDataSchema.pick({
264
377
  serverUrl: true,
265
378
  tools: true,
266
379
  readWriteCapabilities: true,
380
+ isMcpApp: true,
267
381
  transportSupport: true,
268
382
  primaryContactEmail: true,
269
383
  primaryContactName: true
270
- }).partial();
384
+ });
385
+ claudeSubmissionFormDataSchema.pick({
386
+ tagline: true,
387
+ description: true,
388
+ categories: true,
389
+ testCases: true
390
+ });
271
391
  const submissionMetaFieldsSchema = z.object({
272
392
  id: z.string(),
273
393
  environmentId: z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "1.128.0",
3
+ "version": "1.129.1",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",