.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

…/lastmile-ai/mcp-agent
home/mcp-servers/lastmile-ai/mcp-agent
lastmile-ai avatar

mcp-agent

bylastmile-ai· 1 MCP server

Installs

25k

Stars

8.5k

Forks

869

Category

AI Agents & MCP

View on GitHub

TL;DR

`mcp-agent` is a simple, composable framework to build effective agents using Model Context Protocol.

How to install mcp-agent?

lastmile-ai/mcp-agent
$git clone https://github.com/lastmile-ai/mcp-agent

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
README.md
1<p align="center">
2 <a href="https://docs.mcp-agent.com"><img src="https://github.com/user-attachments/assets/c8d059e5-bd56-4ea2-a72d-807fb4897bde" alt="Logo" width="300" /></a>
3</p>
4 
5<p align="center">
6 <em>Build effective agents with Model Context Protocol using simple, composable patterns.</em>
7 
8<p align="center">
9 <a href="https://github.com/lastmile-ai/mcp-agent/tree/main/examples" target="_blank"><strong>Examples</strong></a>
10 |
11 <a href="https://docs.mcp-agent.com/mcp-agent-sdk/effective-patterns/overview" target="_blank"><strong>Building Effective Agents</strong></a>
12 |
13 <a href="https://modelcontextprotocol.io/introduction" target="_blank"><strong>MCP</strong></a>
14</p>
15 
16<p align="center">
17<a href="https://docs.mcp-agent.com"><img src="https://img.shields.io/badge/docs-8F?style=flat&link=https%3A%2F%2Fdocs.mcp-agent.com%2F" /><a/>
18<a href="https://pypi.org/project/mcp-agent/"><img src="https://img.shields.io/pypi/v/mcp-agent?color=%2334D058&label=pypi" /></a>
19<img alt="Pepy Total Downloads" src="https://img.shields.io/pepy/dt/mcp-agent?label=pypi%20%7C%20downloads"/>
20<a href="https://github.com/lastmile-ai/mcp-agent/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg"/></a>
21<a href="https://lmai.link/discord/mcp-agent"><img src="https://img.shields.io/badge/Discord-%235865F2.svg?logo=discord&logoColor=white" alt="discord"/></a>
22</p>
23 
24<p align="center">
25<a href="https://trendshift.io/repositories/13216" target="_blank"><img src="https://trendshift.io/api/badge/repositories/13216" alt="lastmile-ai%2Fmcp-agent | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
26</p>
27 
28## Overview
29 
30**`mcp-agent`** is a simple, composable framework to build effective agents using [Model Context Protocol](https://modelcontextprotocol.io/introduction).
31 
32> [!Note]
33> mcp-agent's vision is that _MCP is all you need to build agents, and that simple patterns are more robust than complex architectures for shipping high-quality agents_.
34 
35`mcp-agent` gives you the following:
36 
371. **Full MCP support**: It _fully_ implements MCP, and handles the pesky business of managing the lifecycle of MCP server connections so you don't have to.
382. **Effective agent patterns**: It implements every pattern described in Anthropic's [Building Effective Agents](https://www.anthropic.com/engineering/building-effective-agents) in a _composable_ way, allowing you to chain these patterns together.
393. **Durable agents**: It works for simple agents and scales to sophisticated workflows built on [Temporal](https://temporal.io/) so you can pause, resume, and recover without any API changes to your agent.
40 
41<u>Altogether, this is the simplest and easiest way to build robust agent applications</u>.
42 
43We welcome all kinds of [contributions](/CONTRIBUTING.md), feedback and your help in improving this project.
44 
45<a id="minimal-example"></a>
46**Minimal example**
47 
48```python
49import asyncio
50 
51from mcp_agent.app import MCPApp
52from mcp_agent.agents.agent import Agent
53from mcp_agent.workflows.llm.augmented_llm_openai import OpenAIAugmentedLLM
54 
55app = MCPApp(name="hello_world")
56 
57async def main():
58 async with app.run():
59 agent = Agent(
60 name="finder",
61 instruction="Use filesystem and fetch to answer questions.",
62 server_names=["filesystem", "fetch"],
63 )
64 async with agent:
65 llm = await agent.attach_llm(OpenAIAugmentedLLM)
66 answer = await llm.generate_str("Summarize README.md in two sentences.")
67 print(answer)
68 
69 
70if __name__ == "__main__":
71 asyncio.run(main())
72 
73# Add your LLM API key to `mcp_agent.secrets.yaml` or set it in env.
74# The [Getting Started guide](https://docs.mcp-agent.com/get-started/overview) walks through configuration and secrets in detail.
75 
76```
77 
78## At a glance
79 
80<table>
81 <tr>
82 <td width="50%" valign="top">
83 <h3>Build an Agent</h3>
84 <p>Connect LLMs to MCP servers in simple, composable patterns like map-reduce, orc

Preview

lastmile-ai/mcp-agentlastmile-ai/mcp-agent
Repolastmile-ai/mcp-agent
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJan 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPagentsai

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