From 6ff2414f0c6bb9f6b3e8ee0c60403a40c06c12f9 Mon Sep 17 00:00:00 2001 From: Karunanidhi Mishra Date: Thu, 18 Jun 2026 23:10:44 -0500 Subject: [PATCH] docs: add optional server readiness metadata template --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 1a6fcb70fa..f8f336799a 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,33 @@ On Windows, apply the same wrapper to each `npx`-based entry above by changing ` Interested in creating your own MCP server? Visit the official documentation at [modelcontextprotocol.io](https://modelcontextprotocol.io/introduction) for comprehensive guides, best practices, and technical details on implementing MCP servers. +## ๐Ÿงพ Optional Server Readiness Metadata + +For teams evaluating server maturity, maintainers may optionally document a compact readiness metadata block per reference server. + +Suggested fields: + +- Maintainer or owning team +- Last updated date +- Authentication model (none, token, OAuth, delegated) +- Supported transports (stdio, streamable HTTP, SSE) +- Security policy link +- License + +Example: + +```yaml +server_readiness: + maintainer: mcp-steering-group + updated: 2026-06-19 + auth: token + transports: [stdio, streamable-http] + security: https://github.com/modelcontextprotocol/servers/blob/main/SECURITY.md + license: Apache-2.0 +``` + +This metadata is optional and can help reduce repeated due-diligence effort across organizations. + ## ๐Ÿ“š Learn More See [ADDITIONAL.md](ADDITIONAL.md) for a curated list of frameworks and resources that simplify building MCP servers and clients.