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.Options
string
required
GitHub repository URL of the MCP server
string
required
Target AI client:
vscode, cursor, antigravity, claude, or chatgptstring
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
Examples
Example Output
Next Steps
Push Server
Publish after tests pass