Paid Git repository creation via MPP on Tempo L2.
What it does
Code Storage is an MPP-enabled endpoint hosted on Tempo's infrastructure that allows callers to create Git repositories and receive authenticated clone URLs. The endpoint is located at /repos and is designed to be invoked with a payment challenge settled via the Tempo L2 network using pathUSD.
Based on the existing listing description, the service offers a straightforward workflow: submit a request to create a repository, pay the per-call fee via the MPP protocol, and receive back repository details including an authenticated clone URL. This positions it as a programmatic, pay-per-use alternative to traditional hosted Git platforms.
However, the probe was unable to elicit a 402 MPP challenge from the endpoint — both HEAD and GET requests returned 404. The root domain and all documentation paths also return 404. This may indicate the endpoint expects a POST method (which is semantically appropriate for resource creation), or it may indicate the service is currently offline or has been relocated. No OpenAPI schema, documentation, or pricing information was found during crawling.
Capabilities
Use cases
- —Programmatically creating Git repositories with per-use payment
- —Agents that need ephemeral or on-demand code storage
- —Automated CI/CD pipelines that provision repositories as needed
Fit
Best for
- —AI agents needing on-demand Git repo provisioning
- —Pay-per-use repository creation without subscription overhead
- —Developers building on Tempo L2 infrastructure
Not for
- —Free or open-source Git hosting needs
- —Browsing or searching existing repositories (this endpoint is creation-only)
- —Users who need a full Git hosting UI (GitHub, GitLab, etc.)
Quick start
# Expected usage (POST likely required; endpoint returned 404 on GET/HEAD)
curl -X POST https://codestorage.mpp.tempo.xyz/repos \
-H "Content-Type: application/json" \
-d '{"name": "my-repo"}'Example
Request
{
"name": "my-repo"
}Endpoint
Quality
The endpoint returned 404 on both HEAD and GET probes, no MPP 402 challenge was captured, and all documentation/pricing paths are dead. The only information available is the existing Bazaar listing title and description. This is effectively a stub — the endpoint may require POST but that could not be confirmed.
Warnings
- —Endpoint returned 404 on HEAD and GET — no MPP 402 challenge captured; may require POST or may be offline
- —All crawled pages (root, /docs, /api, /pricing, /README) returned 404
- —No OpenAPI schema or documentation found
- —No pricing information available
- —Request and response schemas are entirely inferred from the listing title; treat as unverified