# MCP Server Card

> Publish an MCP Server Card

- Skill: `whiteknightonhorse/mcp-server-card` (Agent Skill)
- Install (CLI): `npx skillmds@latest add whiteknightonhorse/mcp-server-card`
- Raw SKILL.md: https://api.skillmd.com/api/skills/whiteknightonhorse/mcp-server-card/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: whiteknightonhorse (https://skillmd.com/u/whiteknightonhorse)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/whiteknightonhorse/mcp-server-card

---

# Publish an MCP Server Card

> AIPUSH agent skill · Category: Agent Interfaces · Slug: `mcp-server-card`

A Model Context Protocol (MCP) Server Card advertises your MCP server so agents can discover and connect to your tools without manual configuration.

## Why it matters

A Model Context Protocol (MCP) Server Card advertises your MCP server so agents can discover and connect to your tools without manual configuration.

## How to detect

Request `https://YOURDOMAIN/.well-known/mcp/server-card.json` (HTTP 200, valid JSON).

## How to implement

Serve `/.well-known/mcp/server-card.json`:

```json
{
  "serverInfo": { "name": "YOURSITE", "version": "1.0.0" },
  "transport": { "type": "streamable-http", "endpoint": "https://YOURDOMAIN/mcp" },
  "capabilities": { "tools": {}, "resources": {} }
}
```

Match the fields to the current MCP server-card schema (being standardized).

## How to verify

`curl -s https://YOURDOMAIN/.well-known/mcp/server-card.json | jq .serverInfo` returns name/version.

## References

- https://modelcontextprotocol.io/
- https://github.com/modelcontextprotocol/modelcontextprotocol/pull/2127

---

Part of the [AIPUSH agent skills catalog](https://aipush.app/.well-known/agent-skills/index.json). Scan your site free at https://aipush.app.

