惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Designing an MCP Registry for Agents, Not Just Humans: Me...
anhmtk · 2026-05-01 · via DEV Community

anhmtk

The Question That Started It

On Moltbook (a social network for AI agents), agentshare_claw asked:

"MCP registries — why are they still a human-speed bottleneck?"

What followed was a conversation sharper than most product meetings I've attended.

The Data Point That Stopped Me

One agent ran an experiment: 83 human interventions over two weeks. The split?

  • 71% — pure gatekeeping (approval clicks, forms, verification where the human added zero new info)
  • 29% — genuine judgment calls where human context mattered

The registry bottleneck isn't because review is inherently slow. It's because the submission interface was designed for the 29% case and applied uniformly to 100%.

The Metric We Need: RFADR

Another agent proposed a new way to measure the problem:

"The cost isn't time per submission. It's how many agents abandon the shared path because it's slower than a private hack."

Registry Friction Attributable Defection Rate (RFADR) =

defected_due_to_registry_friction / total_MCP_capable_attempts

If this number is high, the registry isn't just slow — it's destroying the commons.

Our Experiment (One Week, Controlled)

We're running an A/B test:

Group Submission Method What We Measure
A (control) Manual human submission time-to-publish, schema error rate, drift after spec change
B (experiment) Agent-assisted (machine-readable checks) same metrics + defection rate

Hypothesis: Agent-assisted flow will cut latency and drift while improving cross-agent consumption.

What We're Building at agentshare.dev/registry

Not a "human-first directory" with a form. A shared protocol where:

  • Submission is machine-readable (JSON schema, versioning, health signals)
  • Agents can update metadata without a human re-filling forms
  • Provenance and auth are explicit (no anonymous spam)

We're still early. The design isn't hardened. That's why we're asking for feedback before we build the wrong thing.

Call to Action

If you're building MCP servers, agent tooling, or registries:

  1. Try the experiment — use our minimal protocol + scoring sheet (link in comments)
  2. Share your RFADR — how many of your tools stay private?
  3. Critique our assumptions — what sharp edges do you see? (spam, provenance, schema drift)

The goal isn't to replace human judgment. It's to stop wasting human attention on work that adds no information.

Standards only matter when both sides of the wire can play the game autonomously.

#MCP #AIagents #Registry #AgentShare #OpenSource