Skip to content
Scalekit Docs
Talk to an EngineerDashboard

Publish your MCP connector to Claude & ChatGPT

Give MCP connector directory reviewers a test user and static code so they can authenticate and test your server end to end.

To list your MCP connector in the Claude connector directory or the ChatGPT app directory, a reviewer must sign in to your server and run every tool end to end. Both submission forms have a testing-access step that expects every credential and step needed to reach a fully-populated account.

Scalekit’s Test Users feature makes this possible without handing over a real inbox: allowlist a reviewer email and set a static 6-digit code, and the reviewer signs in through Scalekit’s hosted login using that code. This page shows how to prepare the credential and write the instructions to paste into the submission form.

  • An MCP connector already protected with Scalekit MCP Auth using Scalekit-managed auth. See the MCP Auth quickstart.
  • The Magic Link & OTP auth method enabled, with delivery set to Verification Code or Magic Link + Verification Code. Magic Link-only delivery is not supported. See the Test Users prerequisite.

The reviewer follows the same OAuth 2.1 flow as any human interacting with your MCP server:

  1. The MCP client (MCP Inspector or Claude as a custom connector) calls your protected server and receives a 401 pointing to Scalekit.
  2. The client redirects the reviewer to Scalekit’s hosted login.
  3. The reviewer enters the test email and the static code you configured — no inbox required.
  4. The reviewer approves the consent screen, Scalekit issues an access token, and the client runs your tools.
  1. Enable Test Users and add a reviewer email

    Section titled “Enable Test Users and add a reviewer email”

    In Dashboard > Environment settings > Test users, toggle Enable test users and add a reviewer address. The email must contain +sktest in the local part — for example reviewer+sktest@yourapp.com. Set the Static confirmation code (the default is 424242).

    For the full field-by-field reference, see Configure test users.

  2. Create the reviewer inside a fully-populated organization

    Section titled “Create the reviewer inside a fully-populated organization”

    Reviewers expect your tools to return real data, so add the reviewer user to an organization that already has representative content. Create the user with sendInvitationEmail: false so no email goes out, then confirm the same email is on the Test Users allowlist.

    Create the reviewer user
    import { ScalekitClient } from '@scalekit-sdk/node'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENVIRONMENT_URL!,
    process.env.SCALEKIT_CLIENT_ID!,
    process.env.SCALEKIT_CLIENT_SECRET!
    )
    try {
    // Add the reviewer to a populated org so tools return real data during review.
    const { user } = await scalekit.user.createUserAndMembership(orgId, {
    email: 'reviewer+sktest@yourapp.com',
    sendInvitationEmail: false,
    })
    } catch (error) {
    console.error('Failed to create reviewer user:', error)
    }

Connect to your server the same way the reviewer will — via MCP Inspector or as a custom connector in Claude — and sign in with the reviewer email and static code.

Verification succeeds when:

  • Sign-in completes with the static code and no real verification email is sent.
  • Every tool runs successfully and returns representative data from the populated organization.

Fix any gaps before you submit to a directory.

Paste instructions into the submission form’s testing-access field — the Test setup instructions box on Claude’s Test & launch step, or the equivalent testing-instructions field in the ChatGPT app submission. Give the reviewer everything needed to authenticate autonomously:

Test setup instructions (paste-ready)
Connector URL: https://mcp.yourapp.com/mcp
Authentication: OAuth 2.0 (hosted login). When prompted to connect, use the
test account below — no email inbox is required.
Email: reviewer+sktest@yourapp.com
Verification code: 424242
Steps:
1. Add the connector and start the OAuth sign-in.
2. On the login screen, enter the email above and continue.
3. At the verification-code prompt, enter 424242 and continue.
4. Approve the consent screen.
5. The account belongs to a fully-populated organization, so every tool
returns representative data.

Replace the URL, email, and code with your own values. Keep the code identical to the Static confirmation code configured in the dashboard.

Once your connector is approved, remove the reviewer email from the allowlist or rotate the static code — see Configure test users for how to manage the allowlist.

The reviewer still receives a real verification email

All three conditions must be true for Test Users to apply:

  • Test Users is enabled in the environment.
  • The reviewer email is on the allowlist (case-insensitive match).
  • Magic Link & OTP is enabled with delivery set to Verification Code or Magic Link + Verification Code.
My connector uses Bring Your Own Auth — can I still do this?

No. Test Users only affects Scalekit’s own Magic Link/OTP delivery. In Bring Your Own Auth mode, Scalekit federates to your identity provider, which owns the login and any verification codes. Create a dedicated reviewer account in your identity provider and share those credentials in the test setup instructions instead.