https://github.com/zerogpu/docs
ZeroGPU documentation
https://github.com/zerogpu/docs
Last synced: 5 days ago
JSON representation
ZeroGPU documentation
- Host: GitHub
- URL: https://github.com/zerogpu/docs
- Owner: zerogpu
- License: mit
- Created: 2026-01-07T21:44:44.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-06-12T09:36:49.000Z (5 days ago)
- Last Synced: 2026-06-12T11:15:56.075Z (5 days ago)
- Language: MDX
- Homepage: https://docs.zerogpu.ai/
- Size: 3.99 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This is the **official documentation** repository for [ZeroGPU](https://zerogpu.ai). It contains the API reference, platform guides, cookbook recipes, and SDK examples. The docs are hosted at [docs.zerogpu.ai](https://docs.zerogpu.ai).
## Table of contents
- [Connect ZeroGPU docs to AI tools](#connect-zerogpu-docs-to-ai-tools)
- [What is MCP?](#what-is-mcp)
- [Connect to Claude Code](#connect-to-claude-code)
- [Connect to Cursor](#connect-to-cursor)
- [Contributing](#contributing)
- [Run locally](#run-locally)
- [Submitting changes](#submitting-changes)
- [License](#license)
---
## Connect ZeroGPU docs to AI tools
### What is MCP?
The [Model Context Protocol (MCP)](https://modelcontextprotocol.io) 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:
```bash
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:
```json
{
"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.
```bash
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 `api-reference/openapi/playgrounds/*.openapi.json` and the `docs.json` nav is maintained by hand. These files are committed and edited directly, there is no longer a generator.
**Batch & Files playgrounds** use `api-reference/openapi/batch.openapi.json` (hand-maintained; all `/v1/files` and `/v1/batches` paths). Playground pages live flat under `api-reference/`: `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`. These are also hand-maintained.
Docs use ASCII hyphens only (no em/en dashes). Check this by hand when editing prose.
See `api-reference/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. Run `mint dev` to confirm the site builds.
3. Open a pull request with a clear description.
[Mintlify docs](https://mintlify.com/docs) for configuration and components.
---
## License
[LICENSE](./LICENSE)