OpenSource-Hub

InsForge

Application

InsForge/InsForge

All-in-one backend platform for AI coding agents.

Overview

InsForge is an open-source backend platform for agentic coding. It gives coding agents database, auth, storage, compute, hosting, and an AI gateway to ship full-stack apps end-to-end. Supports self-hosting via Docker Compose or cloud service.

README Preview

\n  \n    \n      \n      \n      \n    \n  \n\n  \n    The all-in-one, open-source backend platform for agentic coding.\n  \n\n  \n    \n    \n    \n    \n    \n      \n    \n  \n  \n    \n    \n    \n  \n  \n    \n  \n  \n  \n    \n  \n\n\n\n  ⭐ Help us reach more developers and grow the InsForge community. Star this repo!\n\n\n## InsForge\nThe all-in-one, open-source backend platform for agentic coding. InsForge gives your coding agent database, auth, storage, compute, hosting, and AI gateway to ship full-stack apps end-to-end.\n\n\n  \n\n\n### How it works\n\nCoding agents interact with InsForge through one of two interfaces:\n\n- **MCP Server** (self-hosted and cloud): exposes InsForge's operations as tools any MCP-compatible agent can call.\n- **CLI + Skills** (cloud only): a command-line interface paired with Skills that agents invoke directly from the terminal.\n\nBoth interfaces let coding agents operate the backend like backend engineers:\n\n- **Read backend context and state**: Pull documentation, schemas, metadata (deployed functions, bucket contents, auth config), and runtime logs, so the agent has what it needs to write code, verify what it built, and debug when something breaks.\n- **Configure primitives**: Deploy edge functions, run database migrations, create storage buckets, set up auth providers, and configure other backend resources directly.\n\n```mermaid\ngraph TB\n\n    subgraph TOP[" "]\n        AG[AI Coding Agents]\n    end\n\n    subgraph MID[" "]\n        SL[InsForge]\n    end\n\n    AG --> SL\n\n    SL --> AUTH[Authentication]\n    SL --> DB[Database]\n    SL --> ST[Storage]\n    SL --> EF[Edge Functions]\n    SL --> MG[Model Gateway]\n    SL --> CP[Compute]\n    SL --> DEP[Deployment]\n\n    classDef bar fill:#0b0f14,stroke:#30363d,stroke-width:1px,color:#ffffff\n    classDef card fill:#161b22,stroke:#30363d,stroke-width:1px,color:#ffffff\n\n    class AG,SL bar\n    class AUTH,DB,ST,EF,MG,CP,DEP card\n\n    style TOP fill:transparent,str