mcpbeat

What Is an MCP Server?

A definition, and then the part documentation cannot give you: what 19 896 real MCP servers actually expose, which transport they really use, and how often each way of failing happens. Every number here comes from our own handshake with every registered endpoint, repeated every 15 minutes.

19 896
servers registered
in the official MCP registry
39%
actually answer
7 920 of them respond to a real handshake
2 295
listed but dead
the registry still calls them active
107 489
tools indexed
median 10 per server, largest has 622

The short answer

An MCP server is a program that exposes tools, data or workflows to an AI application through the Model Context Protocol, so the application can use them without anyone writing a custom integration for that particular pair of products.

“Server” describes its role in the protocol, not where it runs. It can be a command on your laptop that reads one folder, or a hosted service behind an OAuth login. Both answer the same handshake and describe themselves the same way — which is exactly why they can be compared at all, and why 19 896 of them fit in one list.

How many MCP servers exist

19 896 servers are published in the official registry, but only 7 920 of them — 39% — answer when something actually connects.

The gap matters more than the headline number. 2 295 servers are still marked active by the registry and respond to nothing at all: the registry stores what an author submitted once, it never rechecks. Catalogues that copy the registry inherit that error and present dead endpoints as working ones.

Another 1 068 servers flip between answering and failing within a single day, and 341 point at domains that no longer resolve — the project is gone, the listing remains.

Browse all 19 896 with live status →

What a server actually exposes

The protocol defines three things a server can offer — tools, resources and prompts — and a server may implement any combination. In practice tools dominate: we have read 107 489 of them straight off servers via tools/list.

10
tools on a median server

Half expose fewer, half more. 1 045 servers expose three or fewer — often a single function wrapped as a server.

622
tools on the largest one

218 servers expose fifty or more. A large surface is not automatically better — it is more to review before you connect it.

84%
of tools only read

Of the tools whose names are unambiguous, 84% read or search and 16% change something — create, update, delete or execute.

Descriptions and input schemas come with the list. That is what lets a model pick a tool on its own: it reads what is available before it makes a request, instead of being told in advance.

Local and remote servers

The split is almost even: 9 698 registered servers have no network address at all, while 10 198 are reachable over HTTP.

Local — 9 698 servers

Launched by your client as a child process and spoken to over stdio. Installed from npm or PyPI, runs with your own permissions, sees your files.

Uptime cannot be measured for these by anyone, including us — the server only exists while your client is running it. What can be measured is adoption: weekly installs from the package registry.

Remote — 10 198 servers

Runs on someone else's infrastructure at an HTTPS address. Nothing to install; the client connects to a URL. 27% of them require a key or an OAuth login.

These can be checked, and we check every one of them every 15 minutes. A server that answers an authorization challenge counts as alive — it is running, it just will not talk to strangers.

See remote servers by vendor →

What happens when a model calls a tool

Four steps, and the first two are exactly what we run against every endpoint every 15 minutes — which is how everything else on this page gets measured.

  1. Initialize. The client opens a connection and sends protocol version, its own identity and the capabilities it supports. The server answers with its own. This single exchange is enough to tell a working server from a dead one.
  2. List capabilities. The client asks for tools/list and gets names, descriptions and input schemas. A server behind auth stops here and returns a challenge instead — that is the 27% above.
  3. Call. The model picks a tool and the client sends arguments matching its schema. The server validates them, checks authorization and runs the underlying operation.
  4. Return. A structured result goes back to the host, which shows it to the user or feeds it to the model as context for the next reply.

Which transport is actually used

Streamable HTTP has won outright: 93% of the 10 570 endpoints we track use it, and only 7% still use SSE.

streamable-http9 829
93%
sse741
7%

The specification describes both, so documentation says “commonly” and leaves it there. This is the count. If you are writing a client today, SSE is a compatibility path, not a choice.

What goes wrong, and how often

Every guide lists what can fail. Here is how often each thing actually fails, measured across 958 052 handshakes in the last 24 hours.

Answered 49.8%
full handshake, tools readable · 476 782 checks
Needs a key 27.2%
running, but asks for OAuth or an API key · 260 712 checks
Wrong reply 18.0%
the address responds, but not as an MCP server · 172 623 checks
Domain gone 3.4%
the hostname no longer resolves at all · 32 394 checks
Broken TLS 0.6%
certificate expired or invalid · 6 028 checks
Timed out 0.6%
no answer within 20 seconds · 5 719 checks
Not MCP 0.4%
replies, but not with valid JSON-RPC · 3 794 checks

Two of these are worth reading twice. Needs a key is not a failure — the server is running and refusing anonymous clients, which is correct behaviour. Wrong reply is the nastiest case: the address responds with a normal HTTP page, so anything that only checks for a status code will call it healthy. It is not an MCP server at that address any more.

Live breakdown, updated every 15 minutes →

How to tell a working server from a dead one

A listing in a catalogue proves nothing: 2 295 servers are listed as active and answer nothing. Four checks that take a minute each.

  • Does it answer right now? Not “was it added recently” — send a handshake, or look at a site that does. 1 068 servers answer and fail within the same day.
  • Does the domain still exist? 341 registered servers point at hostnames that no longer resolve.
  • Is anyone installing it? Weekly installs from npm or PyPI are work someone did. GitHub stars are bookmarks and never expire.
  • What does it expose? Read the tool list before connecting, not the README. The README describes intentions; tools/list describes the server.

Every server with its live status →

What connecting a server actually grants

The protocol standardises how a server is described. It says nothing about whether that server deserves what you are about to hand it.

A local server runs as your user. It sees the files your account sees, uses the credentials in your environment, and can do anything the command it wraps can do. Scoping it to one directory is a decision you make in the config, not a guarantee the protocol provides.

A remote server sees whatever you authorise it to see on the other side of the login, and every argument the model sends it. 5 643 servers list their tools to an anonymous client — useful for us, and a reminder that a tool list is public information you can read before connecting anything.

Practical order: read the tool list, check which of them write rather than read, give the narrowest credentials that work, and require confirmation for anything that sends, pays, deletes or deploys.

MCP compared to APIs, plugins and function calling

These are not competitors — an MCP server usually wraps an API and describes it in a way a model can discover.

ThingWhat it isHow it differs
API An interface for developers Someone writes integration code for every pairing of API and product.
Function calling A model emitting structured arguments Describes how the model asks, not how a server is found, connected or described.
Plugin An extension for one host app Packaging and permissions belong to that host; nothing carries over to another.
MCP server Capabilities behind a shared protocol One server works with every compatible client, and describes itself on connection.

MCP server FAQ

Every answer below uses our own measurements, not the specification text.

What does MCP stand for?
Model Context Protocol. It is an open standard that lets an AI application talk to outside tools and data through one interface instead of a custom integration per product. As of today 19 896 servers are published against it.
How many MCP servers are there?
19 896 are registered in the official registry. That number is easy to quote and misleading on its own: we handshake with every endpoint every 15 minutes, and only 7 920 of them answer. Another 2 295 are still listed as active but never respond at all.
Do MCP servers run locally or remotely?
Both, and the split is close to even: 9 698 of registered servers have no network address at all — they run on your machine over stdio and are installed from npm or PyPI. The remaining 10 198 are reachable over HTTP. Uptime can only be measured for the second group; a local server is only running while your client is running it.
Do MCP servers need an API key?
Often, but not always. Of the servers with a network address, 27% answer our anonymous handshake with an authorization challenge — they are running, they just will not describe themselves to a stranger. The rest list their tools to anyone who asks.
What can an MCP server actually do?
We have read 107 489 tools directly off servers via tools/list. Of the ones whose names are unambiguous, 84% read or search data and 16% change something — create, update, delete or execute. The median server exposes 10 tools; the largest exposes 622.
Which transport do MCP servers use?
Streamable HTTP has won: 93.0% of the 10 570 endpoints we track use it, and only 7.0% still use SSE. The specification describes both, so documentation tends to say “commonly” — this is the actual count.
Is an MCP server the same as an API?
No. An API exposes endpoints for developers to wire up by hand. An MCP server wraps one or more of those APIs and describes them in a way a model can discover and call without anyone writing integration code for that particular pair of products.
How do I know an MCP server still works?
You cannot tell from a catalogue listing — 2 295 servers on this registry are marked active and answer nothing. 1 068 more flip between working and failing within a single day, and 341 point at domains that no longer resolve. The only reliable check is a real handshake, which is what this site does around the clock.