Endpoint
Authentication
This endpoint requires authentication. Include your Firebase JWT token in
the Authorization header.
You must be authenticated to create servers
Request Body
Unique server identifier. Rules: lowercase letters, numbers, and hyphens only; must start with a letter; 3-50 characters. Examples: weather-mcp, database-query-tool
Semantic version number. Format: MAJOR.MINOR.PATCH (e.g., 1.0.0, 2.3.1)
Clear description of your server’s functionality. Length: 20-500 characters
Your name or organization name
Programming language. Allowed values: python, javascript, typescript, go, rust
Software license. Common values: MIT, Apache-2.0, GPL-3.0, BSD-3-Clause, ISC
Main file that starts your server. Examples: main.py, index.js, server.ts, main.go
Git repository information Repository type (usually "git")
Public repository URL. Must be publicly accessible and contain MCP server code.
Example: https://github.com/username/repo-name
Pricing configuration Three-letter currency code. Examples: INR, USD, EUR
Price amount (use 0 for free servers). Range: 0 to 99999
Optional additional metadata Project homepage URL. Example: https://weather-mcp.dev
Response
"success" on success, "error" on failure
Human-readable confirmation message
The created server object (same structure as the Get Server response)
Examples
curl -X POST "https://api.superbox.ai/api/v1/servers" \
-H "Authorization: Bearer $SUPERBOX_API_TOKEN " \
-H "Content-Type: application/json" \
-d '{
"name": "weather-mcp",
"version": "1.0.0",
"description": "Get real-time weather information and forecasts for any location",
"author": "Your Name",
"lang": "python",
"license": "MIT",
"entrypoint": "main.py",
"repository": {
"type": "git",
"url": "https://github.com/your-username/weather-mcp"
},
"pricing": {
"currency": "INR",
"amount": 0
},
"metadata": {
"homepage": "https://weather-mcp.dev"
}
}'
Response Examples
201 Created
400 Validation Error
401 Unauthorized
409 Conflict
422 Security Scan Failed
{
"status" : "success" ,
"message" : "Server 'weather-mcp' created successfully" ,
"server" : {
"name" : "weather-mcp" ,
"version" : "1.0.0" ,
"description" : "Get real-time weather information and forecasts for any location" ,
"author" : "Your Name" ,
"lang" : "python" ,
"license" : "MIT" ,
"entrypoint" : "main.py" ,
"repository" : {
"type" : "git" ,
"url" : "https://github.com/your-username/weather-mcp"
},
"pricing" : {
"currency" : "INR" ,
"amount" : 0
}
}
}
Deployment Process
After creating a server, SuperBox follows this workflow:
Repository Validation
Clone the repository, verify the structure and entrypoint, and check for required files.
Security Scanning
Run SonarCloud, tool discovery, Snyk, GitGuardian, and Bandit (for Python servers).
Servers with critical security issues will be rejected
Registry Storage
Upload metadata to R2 registry, store repository URL and configuration, and generate the server manifest.
Ready
The server is immediately discoverable in the registry once the response is returned.
Repository Requirements
Required files:
main.py or specified entrypoint
requirements.txt or pyproject.toml
README.md (recommended)
Dependencies: Must include the mcp package. All dependencies must be installable via pip.
JavaScript/TypeScript Servers
Required files:
index.js/index.ts or specified entrypoint
package.json
README.md (recommended)
Dependencies: Must include @modelcontextprotocol/sdk. All dependencies must be on the npm registry.
Required files:
main.go or specified entrypoint
go.mod
README.md (recommended)
Best Practices
Test Locally First Test your server thoroughly before submitting to the registry
Follow Semver Use semantic versioning: MAJOR.MINOR.PATCH
Write Good Descriptions Clear descriptions help users understand your server’s purpose
Security First Never commit secrets or API keys to your repository
Document Well Include a comprehensive README with usage examples
Choose Appropriate License Select a license that matches your intentions
Common Errors
Error: name must be lowercase with hyphens onlyUse only lowercase letters, numbers, and hyphens: my-awesome-server (valid), MyAwesomeServer (invalid)
Error: Unable to access Git repositoryEnsure the repository is public and the URL is correct.
Error: Entry point file not found in repositoryEnsure the file specified in entrypoint exists in your repository root.
Error: Security scan detected critical vulnerabilitiesRemove hardcoded secrets/API keys, fix code vulnerabilities, and update dependencies with known vulnerabilities.
Error: Server with this name already existsChoose a different, unique name or add your username as a prefix: username-server-name