---
name: mcp-server-card
description: Publish an MCP Server Card describing your MCP server
---

# MCP Server Card

Serve an MCP Server Card at `/.well-known/mcp/server-card.json` so agents can discover your Model Context Protocol server.

## Requirements

- Serve `/.well-known/mcp/server-card.json` with HTTP 200
- Content-Type: `application/json`
- Body includes `serverInfo` (name, version), `transport` endpoint, and `capabilities`

## Example

```json
{
  "serverInfo": { "name": "example-mcp", "version": "1.0.0" },
  "transport":  { "type": "streamable-http", "url": "https://mcp.example.com/" },
  "capabilities": {
    "tools":    { "listChanged": true },
    "resources":{ "listChanged": true }
  }
}
```

## References

- [MCP Server Card SEP-1649 (PR)](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/2127)
- [Model Context Protocol](https://modelcontextprotocol.io/)
