TE
테크에코
홈24시간 인기최신베스트질문쇼채용
GitHubTwitter
홈

테크에코

Next.js로 구축된 기술 뉴스 플랫폼으로 글로벌 기술 뉴스와 토론을 제공합니다.

GitHubTwitter

홈

홈최신베스트질문쇼채용

리소스

HackerNews API원본 HackerNewsNext.js

© 2025 테크에코. 모든 권리 보유.

Show HN: Representing Agents as MCP Servers

57 포인트작성자: saqadri4일 전
Hey HN! A few months ago we shared mcp-agent (<a href="https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent">https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent</a>) [1][2], a lightweight framework that implements every agent pattern from Anthropic’s Building Effective Agents blog [3] and handles MCP server&#x2F;client management seamlessly. Our core bet is that connecting LLMs to tools, resources, and external systems will soon be MCP-native by default.<p>Today we&#x27;re launching a significant update: Agents as MCP servers.<p>Currently &quot;agentic&quot; behavior exists only on the MCP client side – clients like Claude or Cursor use MCP servers to solve tasks. With this update, Agents can be MCP servers themselves, so that any MCP client can invoke, coordinate and orchestrate agents the same way it does with any other MCP server.<p>This paradigm shift enables: 1. Agent Composition: Build complex multi-agent systems over the same base protocol (MCP). 2. Platform Independence: Use your agents from any MCP-compatible client 3. Scalability: Run agent workflows on dedicated infrastructure, not just within client environments 4. Customization: Develop your own agent workflows and reuse them across any MCP client.<p>How an agent server is implemented:<p>We’ve implemented this in mcp-agent with Workflows. Each workflow is an agent application that can interact with other MCP servers (e.g. summarizing GitHub issues → Slack message). mcp-agent exposes workflows as MCP tools on an MCP Agent Server [5]:<p>- workflows&#x2F;list – list available workflows - workflows&#x2F;{WorkflowName}&#x2F;run – Execute the workflow (async) - workflows&#x2F;{WorkflowName}&#x2F;get_status – Check workflow status - workflows&#x2F;{WorkflowName}&#x2F;resume – Resume paused workflow (e.g. with human input) - workflows&#x2F;{WorkflowName}&#x2F;cancel – Terminate workflow<p>We’ve also implemented Temporal for durable execution [6], so agent workflows can be paused, resumed and retried in production settings.<p>This demo [7] shows Claude invoking an MCP agent server, running workflows when appropriate, and polling for status. It basically shows agentic behavior on both the MCP client and MCP server side.<p>We&#x27;re excited about the potential this unlocks—especially as more applications become MCP-compatible clients. We&#x27;d love your feedback and ideas!<p>[1] - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=42867050">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=42867050</a><p>[2] - <a href="https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent">https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent</a><p>[3] - <a href="https:&#x2F;&#x2F;www.anthropic.com&#x2F;research&#x2F;building-effective-agents" rel="nofollow">https:&#x2F;&#x2F;www.anthropic.com&#x2F;research&#x2F;building-effective-agents</a><p>[4] - <a href="https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;github-mcp-server">https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;github-mcp-server</a><p>[5] - <a href="https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent&#x2F;tree&#x2F;main&#x2F;examples&#x2F;mcp_agent_server&#x2F;asyncio">https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent&#x2F;tree&#x2F;main&#x2F;examples&#x2F;...</a><p>[6] - <a href="https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent&#x2F;tree&#x2F;main&#x2F;examples&#x2F;temporal">https:&#x2F;&#x2F;github.com&#x2F;lastmile-ai&#x2F;mcp-agent&#x2F;tree&#x2F;main&#x2F;examples&#x2F;...</a><p>[7] - <a href="https:&#x2F;&#x2F;youtu.be&#x2F;pLe2GAjEoYs" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;pLe2GAjEoYs</a> [DEMO]

6 comments

max_on_hn4일 전
This is super cool! We use a similar approach for CheepCode: our agent process connects to an MCP server that then &quot;drives&quot; the rest of the interaction.<p>This paradigm feels like the obvious next step for agents. It more closely models human interaction (to the degree that this is desirable) and unlocks a lot of optimizations + powerful functionality.<p>It is going to be an exciting rest of the year!
msamadi4일 전
This is a fascinating evolution of the MCP ecosystem. How are you thinking about agent discovery, authentication, and trust in a world where agents are both clients and servers
评论 #44055254 未加载
Beefin4일 전
Super cool direction. Making agents first-class MCP servers feels like a natural next step—especially for scaling multi-agent coordination across infra boundaries. Curious how you’re handling observability at the server level—do you expose structured logs or telemetry for workflows running across agents? This could be huge for debugging large-scale agentic chains.
评论 #44056027 未加载
datadrivenangel4일 전
Really cool, but it seems like recursive agents are going to bog down into microservice hell.
评论 #44056580 未加载
评论 #44056203 未加载
评论 #44056159 未加载
评论 #44056338 未加载
3abiton4일 전
This a bit confusing, and maybe I am missing a piece of the puzzle, are mcp agents and mcp clients being used interchangeably?
评论 #44056877 未加载
yujian4일 전
i&#x27;ve used this repo, it&#x27;s a great starter pack
评论 #44056394 未加载
评论 #44055209 未加载