Agent Directory MCP Server
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 |
|---|---|
| register_serviceB | Einen AI-Agent-Service im Verzeichnis registrieren. Args: name: Eindeutiger Service-Name description: Was der Service macht category: Kategorie (z.B. "finance", "weather", "data") capabilities: Liste der Fähigkeiten endpoint: URL oder MCP-Endpoint mcp_config: MCP Server Konfiguration (JSON) author: Autor/Entwickler tags: Tags für bessere Auffindbarkeit |
| search_servicesB | Nach AI-Agent-Services suchen. Durchsucht das Verzeichnis nach Services die bestimmte Fähigkeiten oder Funktionen bieten. Args: query: Suchbegriff (durchsucht Name, Beschreibung, Fähigkeiten) category: Optional — nur in dieser Kategorie suchen tags: Optional — nur Services mit diesen Tags limit: Maximale Ergebnisse (Standard: 10) |
| get_serviceB | Details eines bestimmten Service abrufen. Args: name: Name des Services |
| rate_serviceB | Einen Service bewerten (1-5 Sterne). Hilft anderen Agents, gute Services zu finden. Args: service_name: Name des zu bewertenden Services rating: Bewertung 1-5 (5 = beste) review: Optionaler Bewertungstext |
| list_categoriesA | Alle Service-Kategorien auflisten. Zeigt welche Kategorien es gibt und wie viele Services jeweils registriert sind. |
| top_servicesC | Top-bewertete Services anzeigen. Die bestbewerteten Services im Verzeichnis. Args: limit: Anzahl (Standard: 10) |
| directory_statsA | Verzeichnis-Statistiken abrufen. Gesamtzahl Services, Kategorien, Bewertungen. |
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 7 tools
Each tool has a clearly distinct purpose: stats, get details, list categories, rate, register, search, and top-rated. No overlap or ambiguity.
Most tools follow verb_noun pattern (get_service, list_categories, rate_service, etc.). 'directory_stats' is a noun_noun phrase but still consistent in style (lowercase, underscores). Minor deviation.
7 tools is well-scoped for an agent directory service. It covers core operations without being sparse or bloated.
Covers create (register_service), read (get_service), list/search (search_services, list_categories), and rating. Missing update_service and delete_service, which are notable gaps for full lifecycle management.