MCP Server Cards
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| generate_cardB | Generate a .well-known/mcp-server-card.json for an MCP server. Erstellt eine maschinenlesbare Server Card mit allen Metadaten, die andere Agents zur automatischen Discovery brauchen. Args: name: Name des MCP-Servers description: Kurze Beschreibung des Servers tools: Liste der Tools als [{name: "tool_name", description: "was es tut"}, ...] author: Autor oder Organisation repo_url: URL zum Repository version: Semantic Version (Standard: 0.1.0) categories: Tags/Kategorien für die Suche pricing: Preismodell (free/freemium/paid/open-source) auth_required: Ob Authentifizierung benötigt wird transport: Transport-Typ (stdio/http/both) |
| validate_cardA | Validate a server card JSON against the schema. Prüft ob eine Server Card alle Pflichtfelder enthält und dem Schema entspricht. Gibt auch Warnungen für fehlende empfohlene Felder. Args: card_json: JSON-String der Server Card |
| discoverA | Discover an MCP server card from a URL via .well-known. Prüft ob unter der angegebenen URL eine Server Card unter .well-known/mcp-server-card.json verfügbar ist. Args: url: Basis-URL des Servers (z.B. https://example.com) |
| searchC | Search indexed server cards by keyword. Durchsucht den lokalen Index nach Server Cards. Sucht in Name, Beschreibung, Kategorien und Tool-Namen. Args: query: Suchbegriff |
| registerB | Register a server card in the local index. Fügt eine Server Card zum lokalen Index hinzu oder aktualisiert eine bestehende Card mit gleichem Namen. Args: card_json: JSON-String der Server Card |
| schemaA | Get the JSON schema for MCP server cards. Gibt das vollständige Schema zurück, das beschreibt welche Felder eine Server Card haben kann und welche Pflicht sind. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: discover fetches a card from a URL, generate_card creates a card JSON, register adds to index, schema retrieves schema, search queries index, and validate_card validates a card. No overlap.
Naming mixes styles: verb-only (discover, register, search), verb_noun (generate_card, validate_card), and noun (schema). While readable, it lacks a consistent pattern, such as all verb_noun.
Six tools cover the core operations for server card management: discovery, generation, registration, validation, schema retrieval, and search. This is well-scoped and neither too few nor too many.
The tools cover the main lifecycle: create (generate_card + register), read (discover, search), and validate. Missing update or delete operations, but these are minor gaps for the server's purpose.