AiAgentKarl/agent-server-card-mcp
MCP Server for server card generation, validation and discovery — .well-known/mcp-server-card.json protocol
Platform-specific configuration:
{
"mcpServers": {
"agent-server-card-mcp": {
"command": "npx",
"args": [
"-y",
"agent-server-card-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
An MCP server for generating, validating, and discovering MCP server cards — a standardized way to describe MCP servers so AI agents can automatically find and understand them.
Server Cards are machine-readable JSON files that describe an MCP server's capabilities, similar to how robots.txt describes crawling rules or manifest.json describes web apps. They live at .well-known/mcp-server-card.json and contain:
As the MCP ecosystem grows, agents need a way to discover and evaluate servers automatically. Server Cards solve this by providing:
.well-known/mcp-server-card.json on any domainpip install agent-server-card-mcp{
"mcpServers": {
"server-cards": {
"command": "server-card-server"
}
}
}{
"mcpServers": {
"server-cards": {
"command": "uvx",
"args": ["agent-server-card-mcp"]
}
}
}| Tool | Description | |------|-------------| | generate_card | Generate a .well-known/mcp-server-card.json for any MCP server | | validate_card | Validate a server card against the JSON schema | | discover | Try to discover a server card from a URL via .well-known | | search | Search indexed server car
Loading reviews...