Agent Frameworks With an API
As of August 2026, AIDiveForge tracks 59 agent frameworks with an api. The top three by verified-data score are Emem, Genesys, and Jaybase. Curated agent frameworks with an api tracked by AIDiveForge. Listings are verified against each tool's live website and re-checked regularly.
Last updated July 29, 2026 · 59 tools
Ranked by AIDiveForge's verified-data score: data completeness, verification recency, community rating, and real visitor engagement. How we rank · No tool can pay for placement.

1. Emem
emem stores facts as short, signed tokens — each one a content-addressed handle that any agent can carry through a summarization pass, hand to another agent on a different model or vendor, and resolve back to the exact signed bytes without trusting whoever sent them. The verify step is offline: recompute the hash and ed25519 signature yourself, no server call required. Cold resolution runs around 180 ms; warm cache hits around 10 ms, with every receipt reporting its own latency stats. The honest caveat from the vendor's own benchmarks: against a bare inline number, a single emem token costs 5.8x more context — the savings only appear when you bundle multiple facts into one round trip.
PaidOpen SourceAPIVerified Jul 23, 2026
2. Genesys
Genesys stores what you share in a causal graph you own, then surfaces that context to any app that speaks MCP — so Claude already knows what you told ChatGPT, without you repeating yourself. The graph explains its own reasoning: ask why it remembers something and you get the actual chain of connections, not a confidence score with nothing behind it. Memories fade by a scoring formula tied to relevance and reactivation, so stale data drops out without silently deleting things that still matter. The free tier caps writes at 300 stores per month — heavy users or teams running MCP agents hit that ceiling, then face a choice.
PaidOpen Source$0-$8/moAPISelf-hostedVerified Jul 22, 2026
3. Jaybase
Jaybase stores every agent-generated fact as an immutable, time-stamped record, which means the full sequence of what an agent wrote, when, and why is always recoverable. The vendor describes it as designed for accounting, compliance, and approval workflows where you cannot afford to lose the paper trail. Because it is append-only, there is no overwrite risk — replaying a sequence from any point is a native operation. The library is self-hostable and open-source under AGPL, so it runs inside your own infrastructure without a call home. The project has a small contributor footprint, which means production teams should expect to own gaps in documentation rather than wait for the maintainer to fill them.
FreeOpen SourceAPISelf-hostedVerified Jul 23, 2026
4. AIfunc
The tool treats AI calls the way you already treat HTTP requests: stateless, typed, testable, and wired into your existing code with standard language control flow. No canvas, no orchestration runtime, no new mental model. The vendor states the target is the 80% of real-world AI work that is text-in, structured-data-out — sentiment analysis, summarization, classification. Multi-step workflows are composed with the same if-else and loops you already write. Where this breaks: anything requiring memory across turns, autonomous planning, or tool-use loops is outside the design scope entirely.
FreeOpen SourceAPISelf-hostedVerified Jul 9, 2026
5. Bike4Mind
The workbench routes across 60+ models from OpenAI, Anthropic, Google, and AWS Bedrock through a single interface and API, with a separate lane for open-weight models running on your own hardware via vLLM — the lane no lab can ever sell you or switch off. Sessions, prompts, and artifacts survive mid-conversation model swaps, so when a provider gates its best tier, the switch is a config change, not a rebuild. The agentic layer runs 'Quests' — long-running jobs with a code REPL, search, and MCP access under hard budget caps, so you fire a task and return to results rather than babysitting each step. Where the tool shows its edges: the source-available BSL 1.1 license means self-hosted deployments carry restrictions until the two-year Apache rollover, and teams that need branching multi-agent pipelines beyond single-Quest logic will hit the canvas ceiling fast.
PaidOpen SourceAPISelf-hostedVerified Jul 8, 2026
6. Cognee
The core workflow is three lines: install via pip, point Cognee at a data source, and your agents start recalling cited facts instead of hallucinating from scratch each session. Graph-structured memory means relationships between entities survive retrieval — not just keyword matches. First-party integrations cover Claude Code, Cursor, LangGraph, and an MCP server, so compatible agents read and write memory without custom glue code. The ceiling appears when your ontology needs get specific: custom data models and permissions controls are available, but tuning graph structure for a niche domain requires real configuration work. Teams that need a drop-in vector store with zero graph overhead typically reach for a simpler solution.
PaidOpen SourceAPISelf-hostedVerified Jul 13, 2026
7. Custodian Labs AI Agent
The vendor describes a workflow where a Python developer imports one class, passes a model name and system prompt, calls deploy(), and has a production agent running — no database to provision, no hosting environment to configure. The Guardian Layer handles PII detection before any model call, which means sensitive data in user inputs doesn't reach OpenAI or Anthropic unless you decide it should. RAG is available without configuring embeddings or a vector store — the docs describe adding a knowledge base in one line. The tradeoff is control: because Custodian abstracts the entire infrastructure layer, teams that need to tune chunking strategies, swap embedding models, or run on their own infrastructure hit a wall fast.
PaidAPIVerified Jul 20, 2026
8. eve
The platform gives coding agents a native deployment surface — API, CLI, MCP, and agent-callable Skills — so agents ship and iterate on apps without a human relaying commands. Sandboxed VMs let agents run code they generated without that code touching your production environment. Durable Orchestration means a workflow that pauses for minutes or months resumes from the exact checkpoint, not from scratch. The constraint is architectural: there is no self-hosted path, so teams with strict data-residency requirements or air-gapped environments hit a wall before they write a single agent. At that point, the conversation moves to a competitor with an on-premises option.
PaidOpen Source$20/moAPIVerified Jun 29, 2026
9. Isnad
Isnad attaches provenance metadata to individual claims as they move through agent pipelines, borrowing the narrator-grading logic from classical hadith transmission scholarship to score source reliability at each hop. The vendor describes it as claim-level auditing — you get a trustworthiness grade per claim, not a flat event log. It installs via pip and ships with Docker support and Alembic-managed migrations, which means it slots into existing Python stacks without standing up a separate service. The ceiling appears when your pipeline is not Python-based or when you need a hosted dashboard rather than a library you integrate yourself. Teams outside that boundary are building their own wrapper before they can use the core grading logic.
FreeOpen SourceAPISelf-hostedVerified Jul 11, 2026
10. Kitaru
Kitaru wraps your existing agent SDK — PydanticAI, OpenAI Agents, Claude Agent SDK, or raw Python — and turns every model call, tool call, and intermediate step into a durable checkpoint. When you want to ask what would have happened with a cheaper model or a failed retriever, you replay from a specific checkpoint with one override. Nothing re-executes in production. The vendor's own benchmark shows 200 replayed executions on a cheaper model matching outputs in 192 of 200 cases at 84% lower cost. The ceiling appears when your agent's behavior depends on state that Kitaru's adapter doesn't intercept — external side effects or SDK internals the wrapper never sees won't be faithfully replayed.
FreeOpen SourceAPISelf-hostedVerified Jul 7, 2026
11. npcpy
npcpy is a MIT-licensed Python library built around three primitives: Context, Agent (NPC), and Tool — which you compose to wire up single agents or multi-agent teams running against local runtimes like Ollama and llama.cpp or cloud providers. The library's knowledge graph support and multimodal LLM integration live in the same package, so a research prototype doesn't require stitching together three separate dependencies. Where it starts to strain is at the integration surface: documentation is sparse for anything beyond the happy path, and production observability — logging, tracing, failure recovery — is not built in. Teams moving from research prototype to a production deployment will find themselves reaching for additional infrastructure the library does not provide.
FreeOpen SourceAPISelf-hostedVerified Jul 14, 2026
12. OGAC
The Console gives banks, insurers, and other regulated enterprises one place to connect data sources, route traffic through observed model gateways, build apps in plain language without code, and produce signed, cited audit trails — all governed by rules set once and inherited everywhere. Prompt-injection screening, PII filtering, and policy checks run in the pipe before a call leaves the system. Live scoring watches for drift against a golden set and traces every result to its source. A run can pause for human sign-off, then continue on its own. The self-hosted, AGPL-3.0 path means your data and models stay on your servers — but operating that infrastructure is on your team, not the vendor.
PaidAPISelf-hostedVerified Jul 14, 2026
13. Provena
Provena wraps around retrieval steps, tools, and context assembly logic to log where every chunk of data came from, hash it for tamper detection, and surface that audit trail when something breaks or an auditor asks. The vendor describes six framework adapters, an MCP server, PostgreSQL storage, and a policy engine — covering most standard Python-based pipelines without requiring a hosted service. Installation is self-hosted and free. The ceiling appears when your compliance requirement goes beyond audit trails: Provena is a passive tracking library, not an enforcement layer, so it records what happened but does not block a bad retrieval from reaching the model. Teams with hard EU AI Act enforcement obligations pair it with a separate policy gate.
FreeOpen SourceAPISelf-hostedVerified Jul 22, 2026
14. Tessera
Tessera operates as a deterministic evidence layer that sits between your agent and its outputs. Every claim the agent surfaces is linked to a specific source record; claims without that linkage are refused outright, not softened or hedged. Before any action executes, the agent drafts it from verified claims only and surfaces it for your review. The architecture is open-source under MIT and built to integrate with MCP-based agent setups. Where it breaks: teams that need the agent to synthesize across sources where no single record covers the answer will hit refusals that require data-model work to resolve.
FreeOpen SourceAPISelf-hostedVerified Jul 8, 2026
15. Timbal AI
The platform combines agents, deterministic workflows, knowledge bases, and a UI builder under one roof, with 100+ native connectors to enterprise stacks like SAP, Salesforce, Slack, and Jira. The standout piece is ACE — the Action Control Engine — a behavioral runtime that sits in front of any LLM and, per vendor claims, delivers a 30% reliability gain at a tenth of the per-run cost versus baseline. Everything you build compiles to exportable Python, SQL, or React code, so you are not locked into the canvas. Self-hosting is supported but not cloud-managed — your team carries that operational burden. The no-code surface gets you to a working agent fast; the ceiling appears when multi-step branching logic outgrows what the visual builder can express cleanly.
PaidAPIVerified Jul 9, 2026
16. Katra
Katra is self-hosted memory infrastructure: drop it on any Docker-capable machine, point your MCP-compatible agent at it, and you get episodic recall, semantic search, knowledge graphs, and temporal analysis without rebuilding your agent. The architecture is a single deployable unit — the vendor describes it as a 'memory appliance' — which means setup friction is low for teams that already run Docker or Helm on AWS. Where it breaks: Katra is memory infrastructure, not an agent runner, so teams expecting built-in task planning or tool execution will need to wire those themselves. The project is early-stage with five stars on GitHub and no reported production deployments in public community channels, which means you are taking on the role of early adopter rather than stepping into a proven stack.
FreeOpen SourceAPISelf-hostedVerified Jul 1, 2026
17. HART OS
HART OS is an open-source, Apache-2.0 multi-agent runtime built on AutoGen that runs autonomous agents across a crowdsourced compute network, routes tasks through gossip-based federation, and keeps humans in the approval chain by design. The Recipe Pattern is the sharpest production differentiator: agents learn a task once in CREATE mode, then replay it in REUSE mode without repeating LLM calls — the vendor states up to 90% faster execution on trained tasks. Budget gating and compute escrow prevent any single node from absorbing costs for others. Where this breaks down is in ecosystem maturity: no comparable alternatives are listed in the market, documentation is structured but thin in places, and teams building beyond the Nunba bundled distribution will be navigating architecture that is still finding its production footing.
FreeOpen SourceAPISelf-hostedVerified Jul 28, 2026
18. AMA2
AMA2 gives agents a native place in a shared thread — same participant model, same permissions, same persistent context — instead of bolting them on as integrations. The vendor describes a setup flow through a CLI and an MCP server connection, so agents slot into tools like Claude Code or Cursor without a separate API integration per agent. Where this hits a wall: AMA2 is infrastructure, not an agent runtime, so teams that need agents to plan and execute multi-step tasks independently still build that logic elsewhere. The shared-thread model works well when people and agents need to stay in the same conversation; it does not replace an orchestration layer for autonomous task pipelines.
Paid$10/moAPIVerified Jun 30, 2026
19. Humalike
The platform supplies seven composable APIs — turn-taking, theory of mind, group norms, persona, social memory, social signals, and social observability — that you layer onto agents you are already building. None of these APIs make decisions for you; they surface behavioral data your agent logic can act on. The flagship turn-taking API bundles the full stack into one call, handling when to speak, when to wait, and when to read the room. SOC 2 and ISO 27001 certifications are listed as in progress, which matters if you are building for healthcare or enterprise. The APIs are described as model-agnostic and stack-agnostic, so you are not locked to a specific LLM.
Paid$20 free credits on signupAPIVerified Jul 1, 2026
20. Agent Development Kit (ADK)
ADK is the open-source agent development framework that lets you build, debug, and deploy reliable AI agents at enterprise scale.
FreeAPISelf-hostedVerified Apr 21, 2026
21. Agent Governance Toolkit
Policy enforcement, zero-trust identity, execution sandboxing, and reliability engineering for autonomous AI agents.
FreeOpen SourceAPISelf-hostedVerified May 1, 2026
22. AgenticCalling AI
The core workflow is API-driven: your agent (Claude, ChatGPT, CrewAI, or similar) calls the AgenticCalling API, which places the outbound call, handles the conversation autonomously, and returns structured output — including JSON-extracted data — back to your pipeline. Parallel dialing is the headline capability: the vendor describes batch calls to dozens of numbers simultaneously, which is what makes hotel rate surveys or supplier negotiations viable without a call center. The free tier offers precious little call volume, making it a proof-of-concept runway rather than a production budget. Self-hosting is not an option, so every call transits Magnara's infrastructure — a constraint that stops regulated industries cold. Teams with strict data residency requirements look elsewhere before they finish their security review.
Paid$0.09 per minuteAPIVerified Jun 2, 2026
23. Agnt
AGNT is a local-first agent operating system built around an AGI loop: the agent executes a step, evaluates the result, and re-plans before moving forward — without you steering each decision. Persistent memory and skill layers mean context survives across sessions, not just within a single run. The visual workflow designer handles repeatable paths; goal-mode hands the agent an objective and lets it figure out the steps. Self-hosted deployment with Docker keeps data on your own infrastructure, which matters when your legal team has opinions about where prompts and outputs live. The custom license — not OSI-standard — is the detail that stops procurement at some organizations before the first demo.
PaidOpen Source$0 or $333/year per additional user for hosted versionAPISelf-hostedVerified Jun 9, 2026
24. Alma
Alma stores facts and preferences — name, role, working style, answer preferences, current context, principles — as a self-model any MCP-compatible agent can read at session start. The data stays on your machine; no hosted account, no vendor lock-in. Access is scoped, so an agent can read the slice it needs without touching the full store. Every durable write goes through an event log, which means changes are auditable and can be reversed. The project is explicitly labeled experimental by the maintainer, so APIs are unstable and behavior can change between commits.
FreeOpen SourceAPISelf-hostedVerified Jun 24, 2026
25. Atizar
Atizar is an open-source, TypeScript-native framework for building agent workflows where humans stay in the loop before consequential actions execute. The core pattern: agents plan and gather, then pause for a sign-off before anything ships — emails send, records update, data moves. That approval gate is architectural, not bolted on after the fact. The self-hosted option means client deliveries stay off third-party infrastructure. Where it gets tight is documentation depth — the README carries most of the guidance, which means teams building complex branching logic are reading source code before long.
FreeOpen SourceAPISelf-hostedVerified Jun 22, 2026
26. Autonomy
The core loop — AgentLoop — runs up to a configured step ceiling, selects from 15 bundled procedural skills, ranks candidate actions across five weighted dimensions using beam search, executes through ActionGateway with LOW/MEDIUM/HIGH risk labels, then evaluates and learns. Every event in that chain is stored via event sourcing, so the full run is replayable. The learning loop drafts new skills after a successful run and queues them for review rather than auto-applying them. The wall appears when you need agents running in parallel or sharing state across concurrent sessions — the architecture is single-loop, single-goal. Teams that outgrow that model start wiring external orchestration around it.
PaidOpen SourceFree Trial · 7 days$75/moAPISelf-hostedVerified Jun 22, 2026
27. Better Agent
The CLI walks your Next.js codebase, surfaces every server action and API route, and lets you approve which handlers the agent can call — scaffolding typed Zod schemas you fill in before anything reaches the model. Bearer-token forwarding means the agent runs under your user's session, so existing auth middleware and revalidation logic stays intact. UI ships as a shadcn-compatible component registry: sidebar, popup, inline bar, or command-bar, all installed with one CLI command and owned by your codebase after. Observability is per-run and token-level — latency, tool calls, spend — queryable like HTTP logs. The ceiling appears when you need branching across more than two or three dependent tool calls; the platform approves tools statically, so dynamic routing between handlers requires you to encode that logic in the handler itself.
Paid$0.99/moAPIVerified Jun 25, 2026
28. Browser Use
Browser Use is an open-source Python library for autonomous web task automation using LLMs and computer vision. Teams use it to extract competitive data, fill forms at scale, and monitor page changes across hundreds of sites. The tool hits 89.1% success on standard benchmarks and comes with stealth browser support, CAPTCHA solving, and residential proxies across 195+ countries. The vendor also runs a cloud infrastructure option alongside the self-hosted library. Most production teams pair it with managed browser infrastructure and human approval gates for financial or sensitive actions. The sharp edge: LLMs can't reliably distinguish user instructions from webpage content, leaving agents vulnerable to indirect prompt injection attacks that succeed 24% of the time without defenses.
PaidOpen Source$29/moAPISelf-hostedVerified May 8, 2026
29. Build A Harness
The tool is a visual canvas for designing agent harnesses: multi-layer structures that govern what an agent believes, what it can do, and how it recovers when something goes wrong. You draw a graph on the canvas, and FlowSpec compiles it to LangGraph, CrewAI, Mastra, or Microsoft Agent Framework — no rewrite when you switch. The node library covers 27 types across 14 execution and 13 harness categories, from a minimal three-node loop to an 11-layer stack with world model, five-tier control resolution, nine-layer verification, and six recovery strategies. Langfuse tracing is built into the architecture, so every decision is observable. The ceiling appears when your team needs a hosted managed runtime — the vendor states no hosted API exists, so you own the infrastructure from day one.
FreeOpen SourceAPISelf-hostedVerified Jun 25, 2026
30. Cerver
Cerver is session infrastructure for AI agent fleets: each session carries its full transcript, cost record, model choice, and compute target as a single object you control. You write routing policies — or let auto-routing handle it — so routine tasks go to cheaper models and complex work earns the frontier. Mid-session you can swap the underlying model or compute without losing the transcript. The local relay option means sessions that need your repo or CLI attach to your machine and run on Claude Max or ChatGPT subscriptions you already pay for, which drops marginal token cost close to zero. Spending caps ship on by default, so a runaway parallel agent fleet stops at your number.
Paid$89/mo + $10/dev, max $300/moAPISelf-hostedVerified Jun 23, 2026
31. CopilotKit
The core model is a React and Angular SDK that connects your existing frontend to whatever agent backend you're already running — LangChain, CrewAI, or a custom setup — via the AG-UI protocol, a bi-directional event stream the vendor describes as 'the general-purpose connection between a user-facing application and any agentic backend.' Agents render rich UI cards, forms, and widgets inline as they work, not just text responses. Thread and state persistence is handled automatically across sessions. The friction point arrives when your deployment target isn't a web surface: Slack and Teams connections are flagged as early access, which means you're betting on a roadmap, not a shipping feature. Teams with strict approval gates before agent actions can wire those checkpoints in, but the docs describe this as a configuration responsibility rather than a built-in guardrail system.
PaidOpen Source$39/developer/monthAPISelf-hostedVerified Jun 9, 2026
32. CrewAI
CrewAI helps enterprises operate teams of AI agents that perform complex tasks autonomously, reliably and with full control. The open-source framework (free, self-hosted) defines agents with roles, goals, and backstories, orchestrating them through tasks; the paid AMP adds a visual Studio, deployment infrastructure, tracing, guardrails, and enterprise features. The framework was rebuilt from scratch to remove LangChain dependency; as of v1.14, it's fully standalone and works with any LLM provider. It's used by nearly half of the Fortune 500. But production friction is real: common Reddit advice is to start with CrewAI for speed and migrate to LangGraph when you hit scaling limits—reasonable for most projects. Users report that enthusiasm evaporates when running repeatedly on multiple components, and executing large SELECT queries overflows the LLM context window.
PaidOpen SourceOpen-source free; CrewAI AMP paid tiers start at $99/monthAPISelf-hostedVerified May 6, 2026
33. DataGrout Invariant
DataGrout AI's platform is built to govern agents that run across enterprise systems — CRM, ERP, accounting — where an uncontrolled action has a real cost. The vendor describes deterministic execution controls, hallucination prevention, persistent memory across sessions, and audit trails that satisfy compliance review. Observability and cost tracking are positioned as first-class features, not add-ons, so teams can see which agent step burned the most tokens before the bill arrives. The self-hosted option matters for regulated industries where data cannot leave the perimeter. Where the platform has less evidence behind it: community reports and independent benchmarks are scarce, which makes it harder to verify the hallucination reduction claims at scale before you commit.
Paid$19/moAPISelf-hostedVerified Jun 2, 2026
34. Dify
Open-source LLM app development platform combining AI workflow, RAG pipeline, agent capabilities, model management, observability features and more.
Paid$59/moAPISelf-hostedVerified May 1, 2026
35. Eidentic
The SDK centers on a temporal knowledge graph that tracks when facts were true, resolves contradictions, and consolidates between sessions — so the agent sharpens over time rather than accumulating noise. Durable runs, enforced cost ceilings, and CI-gated evals ship as part of the core, not as paid add-ons. The vendor benchmarks report 55.2% on LongMemEval versus 41.0% for full-context stuffing, and claims up to 39× fewer tokens per query. The gap shows up in support and long-running assistant workflows where session history compounds. At v0.1, the ecosystem is early — teams building anything outside the TypeScript path face a hard stop.
FreeOpen SourceAPISelf-hostedVerified Jun 12, 2026
36. Ejentum - Reasoning Harness
The scraped page content provided does not match the tool described in the structured data — it belongs to a travel-identification app called Spotter, not Ejentum's reasoning harness. Based solely on the structured tool data and validator context, Ejentum is positioned as a reasoning layer that wraps agents with auditable decision chains, anti-deception safeguards, and token-optimized reasoning paths. The vendor states it targets competitive programming benchmarks and compliance-grade auditability. Without matching page content to source specific architectural or integration claims, production behavior at scale and exact failure ceilings cannot be confirmed.
PaidFree Trial · 30 days€5/month or €25/monthAPIVerified Jun 7, 2026
37. Elysia
An open-source framework that spins up an end-to-end agentic RAG application with just two terminal commands.
FreeAPISelf-hostedVerified May 1, 2026
38. FalsifyLab Alpha
The vendor describes FalsifyLab Pro as an MCP server deployable inside Claude Code, Cursor, Cline, or Windsurf, where agents autonomously call tools to pull SEC filings, DeFi vault yields, whale wallet positions, and live macro tape — SPX, VIX, on-chain signals. The free tier returns cached data with rate limits, which is enough to validate a workflow but not enough for production research latency. The Pro subscription unlocks live feeds. Self-hosted deployment is available via PyPI, so teams with data-residency requirements can run it without routing signals through vendor infrastructure. The ceiling appears when research logic grows complex: the tool surfaces data, but multi-step branching across asset classes still lives in your agent scaffolding, not inside FalsifyLab.
PaidFree Trial · 7 days$19/moAPISelf-hostedVerified Jun 1, 2026
39. Hermes Agent
The agent lives on your server — not a vendor's — and connects to Telegram, Discord, Slack, WhatsApp, Signal, and email simultaneously, so the same agent handles a Slack request in the morning and a scheduled backup at night. Persistent memory and auto-generated skills mean it accumulates institutional knowledge over time rather than starting cold on each invocation. Real sandboxing across Docker, SSH, Singularity, Modal, and local backends means you can isolate risky tasks without routing them through a third party. The ceiling appears when you need managed reliability guarantees: at v0.16.0 this is early-stage software, and self-hosted operations teams carry full responsibility for uptime, credential management, and model API costs. Teams that need SLA-backed infrastructure typically wire Hermes into a managed hosting layer — which adds operational overhead the framework itself does not absorb.
PaidOpen SourceAPISelf-hostedVerified Jun 9, 2026
40. Hezo
Hezo runs a hierarchy of agents — CEO, Coach, Captain, workers — each isolated in its own Docker container, with your secrets never passed directly into agent context. Instead, an egress proxy swaps placeholders for real credentials only when the destination host matches an allowed list, and every substitution lands in an append-only audit log. The Coach agent reviews completed work and writes learned rules back onto workers, so repeated mistakes get corrected without you editing prompts by hand. The ceiling appears when you need agents to hit destinations outside the allowed-host list, or when your workflow requires branching logic the org-chart model doesn't express — at that point you're editing configuration that the docs describe but don't walk you through in depth.
FreeOpen SourceAPISelf-hostedVerified Jun 25, 2026
41. Langflow
Open-source visual builder for constructing AI agents and RAG applications via drag-and-drop interface with Python extensibility.
PaidOpen SourceAPISelf-hostedVerified May 15, 2026
42. Lobu
Lobu connects to over 50 data sources — HubSpot, Stripe, Zendesk, Snowflake, GitHub, and more — and builds a live memory layer that agents query on schedule rather than on demand. A 'watcher' definition tells the agent what to look for and when to pause for a human to sign off before anything ships. That approval-before-action model is what makes the autonomous scanning safe enough to actually run unsupervised. The ceiling shows up when your workflow needs logic that doesn't fit a watcher definition — at that point you're writing connector SDK code and maintaining it yourself. Teams with deeply custom data pipelines will feel that constraint before teams running standard SaaS stacks.
PaidOpen SourceAPISelf-hostedVerified Jun 20, 2026
43. Mailto.Bot – Email API for AI agents with native MCP support
Email API for AI agents with native MCP support and instant mailbox creation.
Paid$5/moAPIVerified Apr 20, 2026
44. Memharness
The core premise is storing facts, not strings, with two independent time axes: when something became true in the world and when the agent learned it — so querying past agent states is a real query, not archaeology through logs. Everything lives in a single SQLite file, which means the storage layer makes zero LLM or network calls and stays auditable. Recall combines hybrid vector search and full-text search with a source-staleness signal, so older or superseded sources rank down automatically. Where it breaks: the SQLite backend is a hard ceiling for teams expecting distributed writes or high-concurrency production deployments. Teams hitting that ceiling will need to treat memharness as a pattern to port, not a service to scale horizontally.
FreeOpen SourceAPISelf-hostedVerified Jun 19, 2026
45. Microsoft Agent Framework
A framework for building, orchestrating and deploying AI agents and multi-agent workflows with support for Python and .NET.
FreeAPISelf-hostedVerified Apr 23, 2026
46. Monid 2.0
Unified API router and payment processor for agents to discover and call third-party tools on demand.
PaidAPIVerified May 15, 2026
47. NanoClaw
NanoClaw is a lightweight, open-source personal AI agent that runs on your own machine, connects to messaging apps like WhatsApp, Telegram, Slack, Discord, and Signal, and is built around just 15 source files you can read in a single sitting.
FreeAPISelf-hostedVerified Apr 23, 2026
48. OpenAgents
OpenAgents positions itself as the coordination backbone for distributed AI agents. You get a hosted workspace (or self-host) where agents working on separate machines discover each other, share files and browser context, and coordinate via @mentions. Installation is one-liner: install the Launcher desktop app, point agents at a workspace token, and they join. The platform is open-source with an active but modest community. The technical surface is clean—agents register on the network, events flow between them, and context stays shared. The hard part surfaces later: when your agents are actually doing different things (some coding, some reviewing, some managing), orchestrating handoffs stays manual. This is SDK-first, not no-code. If you're building a research team of specialized agents or debugging scenarios where you need human eyes on agent reasoning in real time, the shared workspace genuinely reduces context switching. If you're running a single coding agent that sometimes needs to call another agent, you might be over-engineering it.
FreeOpen SourceAPISelf-hostedVerified May 8, 2026
49. OpenFang
An open-source Agent Operating System built from scratch in Rust, designed to run autonomous agents on schedules.
FreeAPISelf-hostedVerified Apr 23, 2026
50. OSymandias
The project ships a self-hosted runtime built on FastAPI, Celery, PostgreSQL, Redis, RabbitMQ, and Qdrant, so you get job scheduling, DAG orchestration, shared memory, tool execution, and a real-time dashboard without stitching services together manually. A Python SDK lets you define agents, attach tools, and wire multi-agent plans through goal decomposition — the runtime handles the queuing and dependency resolution. That stack is genuinely useful for research pipelines or internal analysis workflows where you control the infra. The ceiling appears when you need a managed hosted option: there is none, which means your team owns every database migration, worker restart, and Redis failover.
FreeOpen SourceAPISelf-hostedVerified Jun 19, 2026
51. Phinite AI
The platform covers the full agent lifecycle: requirements decomposition via Aura, system generation via Architect, isolated Dev/UAT/Prod Kubernetes environments, version control with rollback, and audit trails that track every interaction. The 600+ prebuilt tools and inline code copilot mean engineering teams spend less time wiring integrations and more time on agent logic. Governance features — granular RBAC, PII redaction, audit logging — are built in, not bolted on. The platform is cloud-hosted only; teams with hard data-residency requirements or air-gapped infrastructure hit that wall immediately. Community signals on how the platform handles very large agent graphs at sustained load are sparse — the vendor page describes the architecture, not the ceiling.
Paid$20/monthAPIVerified Jun 24, 2026
52. RoBrain
RoBrain sits between your team's AI coding tools — Claude Code, Cursor, Copilot, Codex CLI — and a shared Postgres instance, capturing not just decisions but the alternatives your team ruled out. An MCP server runs inside the editor and surfaces relevant history before the agent acts; a batch Synthesis scan reads the whole corpus on a schedule to flag contradictions and drift that no single session would catch. That cross-session contradiction detection is where it separates from alternatives that only check at insertion time or silently delete the losing decision. Self-hosted on Apache 2.0 with your own Postgres; cloud extraction and the Planning API are paid-only features.
PaidOpen SourceAPISelf-hostedVerified Jun 1, 2026
53. RunbookHermes
The agent runs multi-signal diagnosis across observability data, builds a root-cause hypothesis, and generates or updates runbooks from what it learns — so the next incident with the same failure pattern starts from a documented baseline instead of a blank slate. The approval-gated remediation workflow means automated action doesn't ship without a reviewer, which matters when the blast radius is a production service. Where it breaks: the repo is five commits deep with zero open issues, which signals early-stage software, not battle-hardened infrastructure. Teams with complex multi-service topologies will hit integration gaps before the agent's reasoning does. Self-hosting is required, so operationalizing this adds a deployment and maintenance surface your platform team owns.
FreeOpen SourceAPISelf-hostedVerified Jun 9, 2026
54. Skawld
The SDK runs on Node.js 18+ and Bun 1.1+ as an ESM-only package, so it fits cleanly into modern TypeScript projects without a build-step fight. The vendor describes a minimal setup as a single `Agent` instantiation with a provider, a tool set, and a session — you are running a streaming agent loop in under a dozen lines. Where it starts to strain is on the documentation side: the README is thin, full docs live off-repo at skawld.com/docs, and community reports are sparse given the early star count. Teams who need battle-tested enterprise support or a large ecosystem of pre-built integrations will hit that ceiling fast.
FreeOpen SourceAPISelf-hostedVerified Jun 9, 2026
55. Strands Shell
The core pattern is tight: decorate a Python or TypeScript function with `@tool`, pass it to an `Agent`, attach hooks that fire before or after each tool call, and the agent runs its loop. The `BeforeToolCallEvent` hook lets you inspect the tool's name and input — and cancel the call with a message if your conditions aren't met. That's not a workaround; it's the documented pattern. Where the framework gets quiet is multi-agent coordination — the docs describe single-agent tool loops clearly, but teams building agents that hand off to other agents will find precious little guidance on failure recovery between hops. When that gap bites, teams layer their own orchestration logic on top, which means maintaining that logic themselves.
FreeOpen SourceAPISelf-hostedVerified Jun 22, 2026
56. Tab Council
Orbit wraps agent coding work in a bounded loop: it selects a dependency-ordered task, hands it to whichever agent you've wired up, then requires passing tests, lint, and type checks before the task closes. Every run produces structured JSON — what the agent returned, how it scored against a rubric, and a human-readable progress log. Nothing advances on the agent's word alone. The ceiling appears when your workflow needs anything beyond single-task validation loops: multi-repo coordination, branching logic between tasks, or a hosted dashboard for non-engineering stakeholders all require you to build on top of Orbit yourself.
FreeOpen SourceAPISelf-hostedVerified Jun 2, 2026
57. Tabby
Open-source, self-hosted AI coding assistant with code completion, chat, and agentic automation.
FreeAPISelf-hostedVerified Apr 25, 2026
58. Thunderbolt
Open-source, self-hosted enterprise AI client emphasizing data sovereignty and model choice.
PaidAPISelf-hostedVerified Apr 22, 2026
59. Z3r0
Z3r0 is an open-source, self-hosted workbench where a coordinating agent (Z3r0/CSO) delegates to five specialist agents — code audit, recon, exploitation validation, reverse engineering, and cryptography — each scoped to a defined domain. Sessions run against a PostgreSQL-backed timeline log with replay, so long engagements survive interruptions and context window rollovers. WorkProject records tie every finding to authorized scope, targets, and sandbox bindings, which means the evidence chain stays intact when the model context doesn't. The wall appears when your engagement requires a specialist task not covered by the six fixed roles — there is no agent plugin system described in the docs, so teams extending scope are writing new agents from scratch.
FreeOpen SourceAPISelf-hostedVerified Jun 11, 2026
Listings on this page are sourced and verified by the AIDiveForge data pipeline. AIDiveForge is editorially independent — no money changes hands for inclusion.