EveryDev.ai
Subscribe
Home
Tools

3,697+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. TrueForge
    TrueForge icon

    TrueForge

    Agent Harness
    Featured

    TrueForge is an open-source agent harness — the runtime layer that turns an LLM into a working agent, with MCP tools, skills, sandboxing, approvals, and subagents built in.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully open-source under MIT License — free to use, modify, and self-host.

    Engagement

    Available On

    Web
    API
    CLI
    SDK

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent HarnessAgent FrameworksMCP Tools

    Alternatives

    Agent OrchestratorPenguinHarnessOpen SWE
    Developer
    Ensemble Labs Inc (TrueFoundry)San Francisco, CAEst. 2021$21.3M raised

    Listed Aug 2026

    About TrueForge

    TrueForge is an open-source agent harness built by TrueFoundry, released under the MIT License. It handles the full agent execution loop — model calls, MCP tools, skills, sandboxing, human-in-the-loop approvals, context management, and session state — and exposes everything through a chat UI, an HTTP API with a TypeScript SDK, and an embeddable React UI SDK. The GitHub repository reports 4,373 stars and 276 forks as of late August 2026.

    What It Is

    TrueForge sits between a user goal and the final agent response as the runtime orchestration layer. Rather than just generating text, it runs the full execution loop: planning, tool routing and execution, context management for long tasks, security boundaries like sandboxing and human-in-the-loop approvals, and session state that survives reconnects and restarts. The project describes itself as "the open-source agent harness — the runtime layer that turns an LLM into a working agent."

    Architecture and Key Components

    TrueForge has three main parts:

    • TrueForge Server — runs the agent loop, streams every step back to the client, pauses for human approval on sensitive actions, and persists sessions in SQLite (local) or Postgres (hosted).
    • HTTP API + TypeScript SDK — a REST + Server-Sent Events API with an OpenAPI spec, plus the @truefoundry/trueforge-core and @truefoundry/trueforge-sdk npm packages for programmatic agent control.
    • Chat UI + UI SDK — a bundled browser interface served on the same port as the server, plus @truefoundry/trueforge-ui, a customizable React component library for embedding the chat experience in your own app.

    The server treats the sandbox as a tool rather than running the agent inside a sandbox permanently. A sandbox is provisioned only when the agent actually needs to execute code, which allows one server to run many agents concurrently and keeps turns that don't need code execution cheaper and faster.

    Deployment Model

    TrueForge supports two modes with identical agent features:

    • Local mode — a single process on your machine, launched with npx @truefoundry/trueforge, backed by SQLite with no extra infrastructure. Intended for personal use only; not hardened for production or shared internet access.
    • Hosted mode — Docker Compose or Helm deployment backed by Postgres and Redis, supporting multiple replicas behind a load balancer. Redis peers replicas so streams and cancellations follow the client across replicas. Supports optional OIDC login for admin vs. user roles.

    Harness Capabilities

    TrueForge ships a set of built-in capabilities that go beyond basic tool calling:

    • MCP tools — remote MCP servers with header auth or OAuth, including in-chat authorization flows
    • Skills — git-backed SKILL.md instruction packs loaded on demand in the sandbox
    • Human checkpoints — tool approval gates, ask-user-questions, and Generative UI in chat
    • Context engineering — subagents, deferred tool loading, Code Mode, large-result offloading, and compaction for long tasks
    • Any model provider — OpenAI, Anthropic, Google Gemini, and any OpenAI-compatible endpoint, configured from YAML catalogs

    Update: @truefoundry/trueforge-ui@0.2.4

    The latest published release is @truefoundry/trueforge-ui@0.2.4, published on August 19, 2026. The repository was last pushed on August 25, 2026, indicating active development. The project also includes a benchmarking suite comparing TrueForge against Claude Managed Agents and deepagents on the same tasks, tools, and model, with results reproducible from the benchmark/ directory in the repository.

    TrueForge - 1

    Community Discussions

    Be the first to start a conversation about TrueForge

    Share your experience with TrueForge, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully open-source under MIT License — free to use, modify, and self-host.

    • Full agent execution loop
    • MCP tools support
    • Skills (git-backed instruction packs)
    • Sandbox-as-a-tool
    • Human-in-the-loop approvals

    Capabilities

    Key Features

    • Open-source agent harness under MIT License
    • Full agent execution loop with planning, tool routing, and streaming
    • MCP tools support with remote servers, header auth, and OAuth
    • Git-backed Skills (SKILL.md instruction packs) loaded on demand
    • Sandbox-as-a-tool: isolated code/file execution provisioned only when needed
    • Human-in-the-loop checkpoints: tool approval, ask-user-questions, Generative UI
    • Subagents, deferred tool loading, Code Mode, and context compaction
    • Session persistence across reconnects and restarts
    • Local mode (SQLite, npx) and hosted mode (Postgres + Redis, Docker Compose or Helm)
    • Bundled Chat UI served on the same port as the server
    • Embeddable React UI SDK (@truefoundry/trueforge-ui)
    • TypeScript SDK (@truefoundry/trueforge-sdk) for programmatic agent control
    • REST + Server-Sent Events HTTP API with OpenAPI spec
    • Support for OpenAI, Anthropic, Google Gemini, and any OpenAI-compatible endpoint
    • Optional OIDC login for shared deployments with admin vs. user roles
    • YAML-based catalogs for models, MCP servers, skills, and sandbox configuration
    • Benchmarking suite comparing against Claude Managed Agents and deepagents

    Integrations

    OpenAI
    Anthropic
    Google Gemini
    Daytona (sandbox)
    MCP servers
    SQLite
    PostgreSQL
    Redis
    Docker Compose
    Kubernetes (Helm)
    npm
    OIDC providers
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate TrueForge and help others make informed decisions.

    Developer

    Ensemble Labs Inc (TrueFoundry)

    TrueFoundry builds an enterprise-ready AI Gateway and agentic deployment platform that lets organizations govern, deploy, scale, and trace AI workloads across any infrastructure. Founded by ex-Meta engineers Nikunj Bajaj (CEO) and Abhishek Choudhary (CTO), alongside Anuraag Gutgutia (COO), the team brings deep ML and infrastructure expertise from Facebook and WorldQuant. TrueFoundry differentiates through its unified control plane for LLMs, MCP servers, and AI agents — deployable on-prem, VPC, air-gapped, or multi-cloud — with enterprise-grade compliance (SOC 2, HIPAA, GDPR) built in from day one. Named in the Gartner® 2025 Market Guide for AI Gateways, TrueFoundry is trusted by NVIDIA, ResMed, Whatfix, and Innovaccer.

    Founded 2021
    San Francisco, CA
    $21.3M raised
    123 employees

    Used by

    Nvidia
    Siemens
    Global Life Sciences company
    Read more about Ensemble Labs Inc (TrueFoundry)
    WebsiteGitHubLinkedInX / Twitter
    2 tools in directory

    Similar Tools

    Agent Orchestrator icon

    Agent Orchestrator

    An open-source agent orchestration framework by ComposioHQ for building, coordinating, and managing multi-agent AI systems.

    PenguinHarness icon

    PenguinHarness

    An open-source, locally deployed AI agent harness that lets agents autonomously build and recursively self-improve other agents, supporting 1000+ models on desktop or server.

    Open SWE icon

    Open SWE

    An open-source framework for building internal coding agents that integrate with Slack, Linear, and GitHub, built on LangGraph and Deep Agents.

    Browse all tools

    Related Topics

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    153 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    651 tools

    MCP Tools

    Tools built with the Model Context Protocol for specific tasks.

    83 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions