AIAny
AI Agent2025
Icon for item

fast-agent documentation

MCP-native agent framework built around the Model Context Protocol from the start, with end-to-end tested Sampling and Elicitation. Define agents and multi-step workflows in Python, run terminal-first, and swap Anthropic, Google or local models.

Introduction

Most agent frameworks bolted MCP support on after the fact; fast-agent was architected around it from the first commit. The result is the first framework with complete, end-to-end tested MCP feature coverage — including the parts nobody else implements properly, like Sampling and Elicitations — which matters because those are exactly the features that break silently when MCP support is an afterthought.

What Sets It Apart
  • MCP and ACP are first-class, not adapters: agents both consume and expose protocol features, so the same agent plugs into any MCP client or hosts its own. So you build once instead of maintaining a separate integration per host.
  • Provider-agnostic by design — Anthropic, Google, OpenAI, OpenAI-compatible endpoints, and auto-configured local models via llama.cpp — so swapping the model behind an agent is a config change, not a rewrite.
  • Workflows are composed in Python from primitives (chains, parallel fan-out, routers, evaluator-optimizer loops) rather than hidden behind a DSL, so debugging an agent is just reading and stepping through Python.
  • Card Packs distribute agent definitions, skills, and configs as installable units that update independently, which keeps shared setups reproducible across a team.
Who It's For

Great fit if you are building on MCP/ACP and want the protocol features to actually work, prefer a scriptable CLI and plain Python over a web console, or need to keep model providers interchangeable. Look elsewhere if you want a hosted no-code agent builder, a managed enterprise orchestration platform with a UI, or a framework with a large pre-built integration marketplace — fast-agent trades that breadth for protocol depth and developer control.

Information

  • Websitefast-agent.ai
  • Organizationsllmindset
  • Authorsevalstate
  • Published date2025/01/18

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).