Anthropic shipped two related capabilities for MCP connector developers on June 8, 2026: a connector observability dashboard (public beta) and in-app directory submission (official announcement). If you have a connector in the Claude Connector Directory, or you’re building one, both matter.

This guide covers what each feature does, the requirements to use them, and what to prepare before submitting to the directory.


What Was Announced

Connector Observability is a new admin dashboard visible inside Claude under Organization settings → Directory. It shows connector owners metrics on how their published connectors are performing across Claude product surfaces: adoption, errors, latency, and which product surface tool calls are landing on (Anthropic announcement).

In-App Directory Submission lets connector owners initiate and track a directory submission directly inside Claude rather than through the prior external process.

Both features are in public beta. Access requires Admin or Owner access on a Team or Enterprise plan.


The Observability Dashboard

The dashboard surfaces three views (source):

1. Adoption Tracking

  • Active users over time
  • Total tool calls
  • Directory rank over time

Directory rank is surfaced as a metric — Anthropic is explicitly telling developers that their connector competes for visibility in a ranked directory. Optimizing call quality and reliability directly affects rank.

2. Error and Performance Diagnostics

  • Composite health score (a single number combining error rate + latency)
  • Raw error rates
  • Latency at the tool level, not just the connector level
  • Per-tool error breakdowns

The per-tool breakdown is the most actionable piece. A connector with 12 tools might have 11 that work fine and 1 that throws errors on 40% of calls. Without per-tool visibility, that failure is invisible in aggregate metrics.

3. Product-Level Usage Breakdown

Tool calls are segmented by product surface — Claude, Claude Code, Cowork, and more:

  • Claude (claude.ai consumer / team interface)
  • Claude Code (agentic terminal / IDE extension)
  • Cowork (collaborative workspace product)
  • Other surfaces as they emerge

This matters for prioritization. If 85% of your connector’s usage comes from Claude Code and 10% from Claude, your tool annotations and documentation should be optimized for agentic, automated workflows — not conversational prompts.

Who Can Access It

Individual plan users do not have access to the observability dashboard — admin settings aren’t available on individual plans.


In-App Directory Submission

The directory hosts “over 300 third-party connectors … used by millions of people every day.” Until June 8, submission was handled through an external process; Anthropic’s own framing is that developers “can now do so directly in Claude.” Now it runs inside Claude through an 11-step portal that saves progress automatically.

The 11-Step Submission Flow

(Steps below verified against Anthropic’s submission documentation.)

Step 1 — Introduction Overview of what listing in the directory provides: surface area across Claude, Claude Code, and Cowork; trust signals from Anthropic review.

Step 2 — Connection Your server’s HTTPS URL and transport method. HTTP is not accepted — HTTPS is required.

Step 3 — Tools The portal auto-syncs your tools, prompts, and resources from the live server. What it reads is what reviewers will evaluate.

Step 4 — Listing Public-facing presentation: name, tagline, description, categories, icon. This is what users see when browsing the directory.

Step 5 — Use Cases Primary use cases your connector serves and the scope of data it handles. Vague answers here are flagged.

Step 6 — Company Organization info and a primary contact. Reviewers use this contact for questions and for ongoing compliance.

Step 7 — Authentication Authentication method. OAuth 2.0 is required for any connector that accesses authenticated user services. Unauthenticated connectors for local/public data have different requirements.

Step 8 — Data Handling Whether the underlying API is your own, proxied from a partner with permission, or a third party’s you don’t control — and whether the connector handles personal health data or sponsored content (source).

Step 9 — Test and Launch Complete access instructions for reviewers. Reviewers run your connector end-to-end before approving. If they cannot test it, the submission fails.

Step 10 — Compliance Seven mandatory policy acknowledgments. All seven must be accepted. This is not optional.

Step 11 — Review Final verification before submission. Progress saved throughout.

Track status and reviewer feedback at: claude.ai/admin-settings/directory/submissions

For escalations: mcp-review@anthropic.com (source)


What Gets Rejected

Based on Anthropic’s submission documentation, the most common failure modes are:

Missing or incomplete privacy policy

Anthropic’s docs state this explicitly: “Missing or incomplete privacy policies result in immediate rejection.” Your privacy policy must explicitly cover:

  • What data is collected
  • How it is used and stored
  • Third-party sharing
  • Data retention periods
  • Contact information

A link to a generic company privacy page that doesn’t specifically address your connector’s data practices is unlikely to satisfy these requirements. If you’re building an MCP server for the first time and don’t have a standalone privacy policy, write one before submitting.

Missing tool annotations

All tools must include a title and the applicable hint:

  • readOnlyHint: true for read-only operations
  • destructiveHint: true for operations that modify or delete data

Reviewers check annotations for completeness and accuracy. A tool that deletes files but doesn’t carry destructiveHint: true is a rejection.

Insufficient test instructions

Reviewers test your connector end-to-end. If your connector requires credentials, you must provide working test credentials (or a sandbox account) with enough access to demonstrate all listed tools. Connectors that cannot be tested are not approved.

Vague use-case descriptions

Step 5 asks for primary use cases and data handling scope. Answers that consist of generic descriptions (“helps users do AI-powered tasks”) are flagged as insufficient. Reviewers want to understand specifically what your connector does and what data it touches.


Builder Decision Guide

Should you submit your MCP server to the directory?

Submit if:

  • Your connector is genuinely useful to Claude users, not just an internal integration you’ve made public
  • You have a privacy policy that covers your connector’s specific data practices
  • Your tools have complete annotations (title, and appropriate readOnlyHint/destructiveHint)
  • You can provide working test credentials to reviewers
  • You want visibility across Claude, Claude Code, and Cowork without managing your own distribution

Don’t submit yet if:

  • You’re still iterating on the tool schema — changes after submission require re-review
  • You’re relying on HTTP instead of HTTPS
  • Your connector handles PII or sensitive data but you haven’t written specific data handling documentation
  • You don’t have a primary contact who can respond to reviewer questions within a reasonable window

On the observability dashboard: If your connector is already in the directory, go check the dashboard immediately. Per-tool error breakdowns and product-surface segmentation are the most actionable data points — they will tell you where to focus your next maintenance cycle.


Context: Why This Matters Now

The Claude Connectors directory launched in July 2025 and has grown to over 300 third-party connectors. Until June 8, connector owners had no visibility into whether their connector was actually being used, which tools were failing, or where in the product stack usage was concentrated.

That’s a meaningful gap for a tool distribution channel being positioned against the App Store / VS Code Marketplace / npm model. Observatory-grade tooling for MCP server operators is table stakes for that positioning. The June 8 release closes the gap between shipping a connector and operating one.

The in-app submission flow is a quality-of-life change more than a structural one, but it signals that Anthropic is investing in reducing friction for the connector developer path — consistent with a directory meant to keep growing well past today’s 300+ connectors.


Summary

FeatureStatusAccess
Connector observability dashboardPublic betaAdmin/Owner, Team or Enterprise
Per-tool error breakdownIncludedSame
Product-surface usage breakdownIncludedSame
In-app directory submissionLiveAdmin/Owner, Team or Enterprise
Submission tracking dashboardLiveclaude.ai/admin-settings/directory/submissions

The submission portal is always open. Review timelines vary with queue volume. Contact mcp-review@anthropic.com for escalations.