Agents use MCP
Expose Jungle Grid as tools your coding agents, AI agents, or automation systems can call.
MCP + API execution layer
Submit inference, image generation, batch, training, fine-tuning, and containerized AI jobs through MCP or API. Jungle Grid handles routing, execution, logs, recovery, artifacts, and lifecycle tracking.
Your agent submits work. Jungle Grid manages the infrastructure.

Works with Codex, Cursor, Claude Code, Windsurf, and other coding agents.
You are integrating Jungle Grid into my app or AI agent. Goal: Use Jungle Grid as the execution layer for AI workloads. For agents: Connect through the Jungle Grid MCP server so the agent can submit jobs, check status, read logs, and retrieve outputs as tools. For applications: Use the Jungle Grid API to submit jobs directly and track their lifecycle. Build: - Job submission - Job status tracking - Logs and artifact retrieval - Graceful failure handling - A simple production-readable integration Start with a basic inference job. The application should be able to: Submit a job Receive a job ID Poll or check job status Display logs/status to the user Show the final output when completed Show a useful error when failed Do not build provider-specific GPU logic or hardcode cloud GPU infrastructure. Do not make the app or agent manage GPU servers directly. Treat Jungle Grid as the execution layer. Use the Jungle Grid MCP and API docs for the exact tools, endpoints, and request format.
Drop-in workflow
Jungle Grid fits into the way your team already builds. Submit AI jobs, route compute automatically, stream logs, collect artifacts, and stop worrying about provisioning GPU servers.
const response = await fetch("https://api.junglegrid.dev/v1/jobs", {
method: "POST",
headers: {
Authorization: "Bearer " + process.env.JUNGLE_GRID_API_KEY,
"Content-Type": "application/json",
},
body: JSON.stringify({
name: "summarize-document",
image: "ghcr.io/acme/infer:latest",
workload_type: "inference",
model_size_gb: 8,
command: ["python", "infer.py"],
}),
});
const { job_id } = await response.json();One execution layer
Expose Jungle Grid as tools your coding agents, AI agents, or automation systems can call.
Submit jobs directly from your product, backend, or workflow.
Route to capacity, run the workload, stream logs, track lifecycle, and return artifacts.
Execution demo
Same execution layer. API for apps. MCP for agents.
Describe the work, not the GPU.
POST /v1/jobs
{
"type": "inference",
"model": "llama-3.1-8b",
"input": {
"prompt": "Summarize this document"
}
}Capacity and recovery stay behind the API.
{
"job_id": "job_123",
"status": "running",
"logs_url": "/v1/jobs/job_123/logs"
}Return the completed work to your product.
{
"status": "completed",
"output": "...",
"artifacts": [ ... ]
}The problem
AI products need to run more than a single model call. They trigger inference, image generation, long-running batch jobs, training, and containers.
Developers should not have to hardcode providers, manage GPUs, or build queueing and retry logic for every workload.
What Jungle Grid is
Submit work through an API. Jungle Grid runs model inference, fine-tuning, image generation, batch processing, and containerized AI tasks without making your app choose cloud providers, manage GPUs, or wire up failure recovery.
It is an API-first runtime between your agent or application and the compute needed to run its work. The job contract stays stable while the infrastructure stays hidden.
Your app or agent sends one API request for inference, training, image generation, batch scripts, or containerized jobs.
It chooses suitable capacity, starts the run, and handles routing, queue pressure, provider health, and recovery without exposing infrastructure to your app.
The job moves from queued to running to completed or failed. Your app can read logs and collect generated files, artifacts, or output through the API.
Instead of opening GPU dashboards, comparing instance types, and building retry logic, your app submits a job and follows its lifecycle through the API.
For teams and production workloads
Talk to Jungle Grid about inference, training, fine-tuning, batch jobs, agents, or custom GPU execution.