Skip to main content

Usage

Description

Test an MCP server directly from a GitHub repository URL without registry registration or security checks. Perfect for rapid development and testing before publishing to the platform.
TEST MODE - Bypasses security scanning and R2 registry. Use only for testing your own servers during development.

Options

string
required
GitHub repository URL of the MCP server
string
required
Target AI client: vscode, cursor, antigravity, claude, or chatgpt
string
default:"main.py"
Entry point file within the repository root.

How It Works

1

Skip Registry

Bypasses R2 registry lookup and security scanning pipeline
2

Configure Client

Writes MCP config with test mode HTTP URL pointing directly to the Cloudflare Worker
3

Worker fetches source file

The Cloudflare Worker reads the entrypoint directly from the GitHub URL - no R2 registry lookup
4

Test in Client

Use the server immediately in your AI client. It appears as {repo-name}-test in the config (e.g. a repo named my-mcp becomes my-mcp-test).

Architecture

Test mode uses the same Worker infrastructure as production but skips the R2 registry lookup and fetches the entrypoint source directly from your GitHub URL.

Security Notice

This command skips:
  • Security scanning (SonarCloud, tool discovery, Snyk, GitGuardian, Bandit)
  • Quality checks
  • Registry validation
Only test servers you trust or own.

Examples

Example Output

Next Steps

Push Server

Publish after tests pass