← Back to research
·11 min read·opensource

AGNTCY

AGNTCY is the Linux Foundation's "Internet of Agents" infrastructure stack — decentralized agent discovery, identity, observability, and SLIM messaging that interoperate with A2A and MCP. Open-sourced by Cisco in March 2025, donated to the LF in July 2025 with Cisco, Dell, Google Cloud, Oracle, and Red Hat as formative members and 65+ supporting companies.

Key takeaways

  • Donated by Cisco to the Linux Foundation on July 29, 2025 with Cisco, Dell Technologies, Google Cloud, Oracle, and Red Hat as formative members and 65+ supporting companies — heavyweight governance for a young project
  • Not another agent protocol — it is the infrastructure layer around the protocols: decentralized directory (discovery), identity, observability, and SLIM many-to-many messaging, designed to carry A2A and describe MCP servers
  • Actively developed but lightly adopted: 44 of 48 org repos pushed in 2026 and steady releases (Directory v1.4.0, May 2026), yet only ~2,000 total GitHub stars across the whole org and near-zero community discussion
  • AGNTCY's own Agent Connect Protocol (ACP) is archived — the project conceded the protocol race to A2A and repositioned as the plumbing underneath it

FAQ

What is AGNTCY?

AGNTCY is a Linux Foundation open-source project building shared infrastructure for multi-agent systems — agent discovery via a decentralized directory, agent identity, observability SDKs, and the SLIM secure messaging protocol — so agents from different vendors and frameworks can find, verify, and talk to each other.

How much does AGNTCY cost?

Nothing — all components are Apache 2.0 open source under Linux Foundation governance. You pay only for the infrastructure you run it on.

How does AGNTCY relate to A2A and MCP?

It is complementary, not competing: AGNTCY's schema framework (OASF) describes A2A agents and MCP servers for its directory, and SLIM can transport A2A messages. AGNTCY archived its own Agent Connect Protocol after A2A won the protocol race.

How is AGNTCY different from Google A2A?

A2A is a wire protocol for agent-to-agent messaging; AGNTCY is the surrounding infrastructure stack — discovery, identity, observability, and group messaging — that a network of A2A/MCP agents needs to operate at scale.

Executive Summary

AGNTCY (pronounced "agency") is the Linux Foundation's bet that the "Internet of Agents" — its own framing — needs more than a wire protocol — it needs the equivalent of DNS, PKI, and network monitoring. [1] The project ships four infrastructure layers for multi-agent systems: a decentralized Agent Directory for announce-and-discover, an Identity system with cryptographic verification, observability and evaluation SDKs, and SLIM (Secure Low-Latency Interactive Messaging) for many-to-many agent communication. All of it is designed to interoperate with A2A and MCP rather than replace them — the schema framework explicitly describes A2A agents and MCP servers. [2] [3]

Cisco's Outshift incubator open-sourced AGNTCY in March 2025 alongside LangChain and Galileo, then donated it to the Linux Foundation on July 29, 2025, with Cisco, Dell Technologies, Google Cloud, Oracle, and Red Hat as formative members and more than 65 supporting companies. [4] [3] Development is genuinely active — 44 of the org's 48 repositories saw pushes in 2026, and Directory shipped v1.4.0 in May 2026 — but adoption signal is weak: roughly 2,000 GitHub stars across the entire organization as of June 2026, and no AGNTCY story has ever cracked Hacker News's front page. [5] [6]

AttributeValue
OrganizationLinux Foundation (initiated by Cisco's Outshift, with LangChain and Galileo) [3]
LaunchedMarch 2025 (open-sourced); July 29, 2025 (LF donation) [3]
Formative MembersCisco, Dell Technologies, Google Cloud, Oracle, Red Hat [3]
Supporting Companies65+ at donation [3]
LicenseApache 2.0 [5]
GitHub Stars~2,066 across 48 org repos; top repo (OASF) 316 — as of June 2026 [5]

Product Overview

AGNTCY is consumed as a set of components, not a single install: you describe agents with OASF records, publish them to a Directory node, issue them verifiable identities, wire their traffic through SLIM, and instrument them with the observability SDK. A reference application, CoffeeAGNTCY, demonstrates the components end to end. [2] [5]

Key Capabilities

CapabilityDescription
OASF (Open Agentic Schema Framework)OCI-based extensible data model describing agent attributes; covers A2A agents and MCP servers [2]
Agent DirectoryDecentralized announce-and-discovery of agents and multi-agent applications using OASF records [2]
IdentityOnboard, create, and verify decentralized identities for agents, models, and MCP servers, issuable by any organization [2] [3]
SLIMSecure low-latency messaging supporting pub/sub, request/reply, streaming, and fire-and-forget patterns [2]
Observability & EvaluationTelemetry collectors and SDKs purpose-built for multi-agent applications [2]
CoffeeAGNTCYEnd-to-end reference application exercising the full stack [5]

Product Surfaces

SurfaceDescriptionAvailability
Component reposoasf, dir, slim, identity, observe — independently versionedGA, Apache 2.0 [5]
Identity ServiceCentral hub (TypeScript) for managing and verifying agent identitiesActive development [5]
Docs sitedocs.agntcy.org with per-component guidesLive [2]

Technical Architecture

The components are polyglot and independently deployable: SLIM is written in Rust, the Directory and Identity in Go, OASF in Elixir, and the observability SDK in Python. [5] SLIM runs over gRPC and targets interaction patterns plain HTTP request/response handles poorly — group communication, streaming, and many-to-many messaging between agents. [2] The Directory is explicitly decentralized: any organization can run nodes and announce agents described by OASF records, the "Internet of Agents inventory" framing. [2]

A telling architectural decision: AGNTCY originally shipped its own agent protocol — the Agent Connect Protocol (ACP, not to be confused with IBM's identically abbreviated protocol) — and has since archived it, along with its workflow server and I/O mapper repos. The project now positions itself as infrastructure beneath A2A and MCP rather than a competing protocol. [5]

Key Technical Details

AspectDetail
DeploymentSelf-hosted, per component; no managed service [2]
LanguagesRust (SLIM), Go (Directory, Identity), Elixir (OASF), Python (observability) [5]
IntegrationsA2A agents, MCP servers, Copilot agent manifests via OASF; LangChain and Galileo co-launch partners [2] [4]
Release cadenceDirectory v1.4.0 (May 2026), OASF v1.0.1 (Mar 2026), observability SDK v1.0.42 (May 2026), Identity v0.0.23 (Jan 2026) [5]
Open SourceApache 2.0, Linux Foundation neutral governance [3]

Strengths

  • Heavyweight, vendor-neutral governance — Linux Foundation stewardship with Cisco, Dell, Google Cloud, Oracle, and Red Hat as formative members and 65+ supporting companies removes single-vendor risk on paper. [3]
  • Fills a real gap the protocols don't — A2A defines how two agents talk; AGNTCY tackles discovery, identity, and observability at network scale, the layers any production multi-agent deployment eventually needs. [2]
  • Interoperates instead of fragmenting — OASF describes A2A agents and MCP servers, and the project killed its own competing protocol rather than splitting the ecosystem. [2] [5]
  • Genuinely active engineering — 44 of 48 repos pushed in 2026, with SLIM and Directory commits landing the day of this research (June 11, 2026) and a steady release train across components. [5]
  • Identity is a differentiated bet — cryptographically verifiable agent identity issuable by any organization addresses a trust problem none of the messaging protocols solve. [3]

Cautions

  • Adoption signal is thin — ~2,066 stars across the entire 48-repo org (top repo: 316) after 15 months, against 24K+ for the single A2A repo; corporate logos have not translated into visible grassroots usage. [5]
  • Sprawl risk — six component categories, five implementation languages, and 48 repos is a lot of surface area for a project this young; HN's sole substantive reaction called it a "crazy sprawling framework." [5] [6]
  • SLIM departs from HTTP — a bespoke gRPC-based messaging layer is an adoption hurdle when the rest of the agent ecosystem settled on HTTP-native protocols. [2]
  • Strategy already pivoted once — the archived Agent Connect Protocol, workflow server, and I/O mapper show the original product thesis didn't survive contact with A2A; the surviving components could be re-scoped again. [5]
  • Acronym hazard — AGNTCY's archived "ACP" (Agent Connect Protocol) is unrelated to IBM's ACP (Agent Communication Protocol, itself merged into A2A) and Zed's Agent Client Protocol, making 2025-era comparison content actively confusing. [5]

What Developers Say

Community discussion is strikingly sparse for a project with this many corporate backers: no AGNTCY submission has exceeded 3 points on Hacker News as of June 2026, and the mentions that exist are mostly side comments in other projects' threads. [6] That silence — fifteen months after launch — is itself a data point.

"Crazy sprawling framework. A directory of ACA and MCP tools. A bespoke low latency messaging system. Workflow schedulers." — jauntywundrkind, Hacker News [6]

"Great, another Agent 2 Agent protocol. One more of those and we'll have a complete set!" — mindcrime, in the A2A launch thread [7]

"A quick scan of the 'partners' for A2A includes many of the same groups that helped launch AGNTCY. Either they jumped ship or they're teaming up with everyone." — soccernee, Hacker News [7]

"Agntcy is a little more elaborate, but also notable as a massive AI tool that includes tool management. Donated to Linux Foundation from Cisco & many others." — jauntywundrkind, Hacker News [8]


Pricing & Licensing

TierPriceIncludes
Open sourceFreeAll components — Directory, Identity, SLIM, OASF, observability SDKs — Apache 2.0 [5]

Licensing model: Apache 2.0 across the org under Linux Foundation neutral governance; no commercial edition exists. [3] [5]

Hidden costs: Everything is self-hosted — running Directory nodes, SLIM message brokers, and identity services is your operational burden, and the five-language stack raises the maintenance bar. [2]


Competitive Positioning

Direct Competitors

CompetitorDifferentiation
Google A2AA2A is the agent-to-agent wire protocol (24K+ stars, LF-governed, v1.0); AGNTCY is the discovery/identity/observability infrastructure around it — complementary by design, but A2A's signed Agent Cards and extensions encroach on AGNTCY's discovery turf [2]
ACPIBM's ACP merged into A2A in August 2025 (historical); AGNTCY avoided the same fate by archiving its own protocol early and repositioning as infrastructure [5]
ANPANP shares the decentralized-discovery-and-identity ambition with DIDs; AGNTCY counters with LF governance and five formative corporate members [3]
MCP registries / gatewaysEmerging MCP registry tooling overlaps with the Agent Directory for the agent-to-tool half of discovery [8]

When to Choose AGNTCY Over Alternatives

  • Choose AGNTCY when: you operate many agents across organizational boundaries and need discovery, verifiable identity, and observability as shared infrastructure — and you have the platform engineering capacity to self-host it.
  • Choose Google A2A alone when: you need agents to interoperate today; its Agent Cards cover point-to-point discovery without standing up directory infrastructure.
  • Choose plain MCP + a registry when: your problem is agent-to-tool wiring inside one organization, not an inter-organization agent network.

Ideal Customer Profile

Best fit:

  • Large enterprises (especially Cisco/Dell/Oracle/Red Hat shops) standardizing multi-vendor agent deployments that need discovery, identity, and audit infrastructure
  • Platform teams building internal "agent networks" who want LF-governed, Apache 2.0 components instead of a proprietary control plane
  • Vendors that want their agents discoverable and verifiable across organizational boundaries

Poor fit:

  • Startups shipping a single agent product — A2A plus MCP covers them with far less operational surface
  • Teams wanting a managed service; every AGNTCY component is self-hosted
  • Anyone allergic to early-stage churn — Identity is still v0.0.x and the project has already archived one product line [5]

Viability Assessment

FactorAssessment
Financial HealthN/A as a foundation project — sustained by Cisco's Outshift plus formative members; no independent revenue [3]
Market PositionUnproven — strongest-governed entrant in agent infrastructure, but A2A owns the protocol mindshare and AGNTCY's layer is not yet anyone's default [5]
Innovation PaceHigh — 44 of 48 repos active in 2026, regular component releases through May–June 2026 [5]
Community/EcosystemWeak — ~2K total org stars, no front-page HN moment, discussion limited to drive-by mentions [5] [6]
Long-term OutlookHinges on whether the A2A ecosystem adopts AGNTCY's directory/identity layers or grows its own equivalents

The corporate-backing-to-community-traction gap is the defining tension: 65+ supporting companies and five formative members would normally signal a winner, but fifteen months in, the grassroots adoption that made MCP and A2A defaults has not materialized. [3] [5] The graceful retreat from the protocol race shows the project can self-correct, which counts for something at this stage. [5]


Bottom Line

AGNTCY is the most institutionally credible attempt at the layer above the agent protocols — discovery, identity, and observability for networks of A2A and MCP agents, under Linux Foundation governance with real engineering velocity behind it. But infrastructure standards win on usage, not membership rosters, and AGNTCY's usage signal is faint: ~2K org-wide stars, near-zero community discussion, and one already-abandoned product line. [5] [6]

Recommended for: Enterprise platform teams building multi-vendor, cross-organization agent networks who want open, vendor-neutral discovery and identity infrastructure and can self-host it.

Not recommended for: Single-product agent teams (use A2A + MCP directly), anyone needing a managed service, or teams that require proof of production adoption before betting on infrastructure.

Outlook: Watch whether the A2A project blesses AGNTCY's Directory and Identity as its official discovery/identity story — that would make AGNTCY the default plumbing of the agent ecosystem. Absent that, it risks becoming a well-governed stack waiting for a network that standardized elsewhere.


Research by Ry Walker Research • methodology