.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/mozilla-ai/any-agent
home/mcp-servers/mozilla-ai/any-agent
mozilla-ai avatar

any-agent

bymozilla-ai· 1 MCP server

Stars

1.2k

Forks

95

Category

AI Agents & MCP

View on GitHub

TL;DR

A single interface to use and evaluate different agent frameworks

How to install any-agent?

mozilla-ai/any-agent
$git clone https://github.com/mozilla-ai/any-agent

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install any-agent by running `git clone https://github.com/mozilla-ai/any-agent`, then use it for the current task and follow its documentation at https://github.com/mozilla-ai/any-agent.

Files · 1

View on GitHub
README.md
1<p align="center">
2 <picture>
3 <img src="https://raw.githubusercontent.com/mozilla-ai/any-agent/refs/heads/main/docs/images/any-agent-logo-mark.png" width="20%" alt="Project logo"/>
4 </picture>
5</p>
6 
7<div align="center">
8 
9# any-agent
10 
11[![Docs](https://github.com/mozilla-ai/any-agent/actions/workflows/docs.yaml/badge.svg)](https://github.com/mozilla-ai/any-agent/actions/workflows/docs.yaml/)
12[![Tests](https://github.com/mozilla-ai/any-agent/actions/workflows/tests-integration.yaml/badge.svg)](https://github.com/mozilla-ai/any-agent/actions/workflows/tests-integration.yaml/)
13![Python 3.11+](https://img.shields.io/badge/python-3.11%2B-blue.svg)
14[![PyPI](https://img.shields.io/pypi/v/any-agent)](https://pypi.org/project/any-agent/)
15<a href="https://discord.gg/4gf3zXrQUc">
16 <img src="https://img.shields.io/static/v1?label=Chat%20on&message=Discord&color=blue&logo=Discord&style=flat-square" alt="Discord">
17</a>
18 
19A single interface to use and evaluate different agent frameworks.
20 
21</div>
22 
23> [!IMPORTANT]
24> **`any-agent` is in soft deprecation.** It started as a research project to compare agent frameworks and refine a minimal common surface. That distillation has graduated to its own package: [`mozilla-ai-tinyagent`](https://github.com/mozilla-ai/tinyagent) (PyPI: `mozilla-ai-tinyagent`). For new projects we recommend using `tinyagent` directly.
25>
26> `any-agent` continues to be published and we'll take security/bug-fix PRs, but no new features are planned. Reach for `any-agent` when you specifically need to **run or evaluate agents across multiple frameworks** (Agno, Google ADK, LangChain, LlamaIndex, OpenAI Agents SDK, smolagents) under one API. If you only need the core agent loop, `mozilla-ai-tinyagent` is the leaner path.
27 
28## [Documentation](https://docs.mozilla.ai/any-agent/)
29 
30- [Agents](https://docs.mozilla.ai/any-agent/agents/)
31- [Tools](https://docs.mozilla.ai/any-agent/agents/tools/)
32- [Tracing](https://docs.mozilla.ai/any-agent/core-concepts/tracing)
33- [Serving](https://docs.mozilla.ai/any-agent/core-concepts/serving)
34- [Evaluation](https://docs.mozilla.ai/any-agent/core-concepts/evaluation)
35 
36## [Supported Frameworks](https://docs.mozilla.ai/any-agent/)
37 
38[![TinyAgent](https://img.shields.io/badge/TinyAgent-ffcb3a?logo=huggingface&logoColor=white)](https://huggingface.co/blog/tiny-agents) [![Google ADK](https://img.shields.io/badge/Google%20ADK-4285F4?logo=google&logoColor=white)](https://github.com/google/adk-python) [![LangChain](https://img.shields.io/badge/LangChain-1e4545?logo=langchain&logoColor=white)](https://github.com/langchain-ai/langgraph) [![LlamaIndex](https://img.shields.io/badge/🦙%20LlamaIndex-fbcfe2)](https://github.com/run-llama/llama_index) [![OpenAI Agents](https://img.shields.io/badge/OpenAI%20Agents-black?logo=openai)](https://github.com/openai/openai-agents-python) [![Smolagents](https://img.shields.io/badge/Smolagents-ffcb3a?logo=huggingface&logoColor=white)](https://github.com/huggingface/smolagents) [![Agno AI](https://img.shields.io/badge/Agno-ff4017)](https://github.com/agno-agi/agno)
39 
40 
41 
42### Planned for Support (Contributions Welcome!)
43 
44[Open Github tickets for new frameworks](https://github.com/mozilla-ai/any-agent/issues?q=is%3Aissue%20state%3Aopen%20label%3Aframeworks)
45 
46## Requirements
47 
48- Python 3.11 or newer
49 
50## Quickstart
51 
52Refer to [pyproject.toml](./pyproject.toml) for a list of the options available.
53Update your pip install command to include the frameworks that you plan on using:
54 
55```bash
56pip install 'any-agent'
57```
58 
59To define any agent system you will always use the same imports:
60 
61```python
62from any_agent import AgentConfig, AnyAgent
63```
64For this example we use a model hosted by Mistral, but you may need to set the relevant API key for whichever provider being used.
65See our [Model Configuration docs](https://docs.mozilla.ai/any-agent/agents/models/) for more information about configuring models.
66 
67```bash
68export MISTRAL_API_KEY="YOUR_KEY_HERE" # or OPENAI_API_KEY, etc
69```
70 
71```python

Preview

mozilla-ai/any-agentmozilla-ai/any-agent
Repomozilla-ai/any-agent
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k