Skip to content

zerogpu/docs

Repository files navigation


This is the official documentation repository for ZeroGPU. It contains the API reference, platform guides, cookbook recipes, and SDK examples. The docs are hosted at docs.zerogpu.ai.

Table of contents


Connect ZeroGPU docs to AI tools

What is MCP?

The Model Context Protocol (MCP) lets AI applications connect to external data sources in a standard way. Connecting your AI coding tool to ZeroGPU docs via MCP gives it live search over the full documentation. Updates to the docs are reflected automatically.

ZeroGPU docs hosts an MCP server at:

https://docs.zerogpu.ai/mcp

Connect to Claude Code

Step 1: Add the MCP server:

claude mcp add --transport http zerogpu-docs https://docs.zerogpu.ai/mcp

Step 2: Verify: run claude mcp list and confirm zerogpu-docs appears. In a Claude Code session, ask a question about ZeroGPU; answers will be grounded in the docs.

Connect to Cursor

Step 1: Open the Command Palette (Cmd+Shift+P / Ctrl+Shift+P) → Open MCP settings.

Step 2: Click Add custom MCP and add:

{
  "mcpServers": {
    "zerogpu-docs": {
      "url": "https://docs.zerogpu.ai/mcp"
    }
  }
}

Save, restart Cursor, then ask a question about ZeroGPU in chat to verify.


Contributing

Run locally

Prerequisites: Node.js.

npm i -g mint
cd docs
mint dev

Preview at http://localhost:3000 (or the port Mintlify reports).

API playground: Each model has a live playground under API Reference → Endpoints → By model (and on its catalog page). Specs live in openapi/playgrounds/*.openapi.json; docs.json nav is updated by the generator. Regenerate from the catalog:

node scripts/generate-openapi.mjs
node scripts/generate-model-pages.mjs
node scripts/import-orchestration-batch-docs.mjs   # from ../orchestration-api/docs/batch

Batch & Files playgrounds use openapi/batch.openapi.json (hand-maintained; all /v1/files and /v1/batches paths). Playground pages: api-reference/batch/upload-file.mdx, list-files.mdx, retrieve-file.mdx, download-file.mdx, delete-file.mdx, create-batch.mdx, retrieve-batch.mdx, list-batches.mdx, cancel-batch.mdx. Prose reference pages are imported from orchestration-api/docs/batch/; re-import injects playground cards on files-api and batches-api.

Docs use ASCII hyphens only (no em/en dashes). After editing prose, run node scripts/normalize-dashes.mjs to catch any or characters (it avoids turning them into awkward colons).

See openapi/zerogpu.openapi.json and api in docs.json. Validate with mint validate.

Submitting changes

  1. Edit .mdx or .md files in this repo.
  2. Regenerate model detail pages from API metadata:
node scripts/generate-model-pages.mjs
  1. Run mint dev to confirm the site builds.
  2. Open a pull request with a clear description.

Mintlify docs for configuration and components.


License

LICENSE

About

ZeroGPU documentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from mintlify/starter