Skip to main content
Glama

@gildara/mcp-server

MCP-Server für Gildara — bringen Sie Ihren Prompt-Vault in jedes KI-Tool.

Was er bewirkt

Verbindet Ihre Gildara-Prompt-Bibliothek mit Claude Desktop, Cursor, Windsurf und jedem MCP-kompatiblen Tool. Ihr KI-Assistent kann:

  • Prompts auflisten — durchsuchen Sie Ihren Vault

  • Prompts auflösen — erhalten Sie kompilierte System-Prompts mit zusammengestellten Betriebsverträgen

  • Prompts ausführen — Ausführung mit automatischer Reparatur (JSON-Schema-Validierung + erneuter Versuch)

  • Prompts erstellen — speichern Sie neue Prompts aus Ihrer KI-Sitzung

  • Blueprints durchsuchen — sehen Sie sich vorgefertigte Agenten-Vorlagen an

Related MCP server: promtlab

Einrichtung

1. API-Schlüssel abrufen

Für Agenten (kein Browser erforderlich):

curl -X POST https://gildara.io/api/v1/provision \
  -H 'Content-Type: application/json' \
  -d '{"agent_label": "my-agent"}'

Liefert sofort einen API-Schlüssel (pvk_...). Keine Registrierung erforderlich.

Für Menschen: Gehen Sie zu gildara.io/account und erstellen Sie einen API-Schlüssel mit dem agent-standard-Preset.

2. Zu Claude Desktop hinzufügen

Bearbeiten Sie ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) oder %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "gildara": {
      "command": "npx",
      "args": ["-y", "@gildara/mcp-server"],
      "env": {
        "GILDARA_API_KEY": "pvk_your_key_here"
      }
    }
  }
}

3. Zu Cursor hinzufügen

Bearbeiten Sie .cursor/mcp.json in Ihrem Projektstammverzeichnis:

{
  "mcpServers": {
    "gildara": {
      "command": "npx",
      "args": ["-y", "@gildara/mcp-server"],
      "env": {
        "GILDARA_API_KEY": "pvk_your_key_here"
      }
    }
  }
}

4. Zu Claude Code hinzufügen

claude mcp add gildara -- npx -y @gildara/mcp-server

Setzen Sie dann GILDARA_API_KEY in Ihrer Umgebung.

Tools

Tool

Beschreibung

list_prompts

Alle Prompts in Ihrem Vault auflisten

get_prompt

Prompt-Details und Betriebsvertrags-Konfiguration abrufen

resolve_prompt

Kompilierten System-Prompt mit Vertragsabschnitten abrufen

run_prompt

Prompt über KI mit automatischer Reparatur ausführen

create_prompt

Einen neuen Prompt erstellen

list_blueprints

Agenten-Blueprint-Vorlagen durchsuchen

Anwendungsbeispiel

Sobald die Verbindung hergestellt ist, sagen Sie Ihrer KI einfach:

"List my Gildara prompts" "Resolve my code-review-agent prompt with the code_diff variable" "Run the security-audit prompt against this code" "Save this prompt to my Gildara vault"

Umgebungsvariablen

Variable

Erforderlich

Beschreibung

GILDARA_API_KEY

Ja

Ihr API-Schlüssel (pvk_...). Sofort abrufen: curl -X POST https://gildara.io/api/v1/provision -H "Content-Type: application/json" -d '{"agent_label":"my-agent"}'

GILDARA_BASE_URL

Nein

API-URL überschreiben (Standard: https://gildara.io)

Einen Schlüssel ohne Browser abrufen

Keine Registrierung erforderlich. Führen Sie dies aus, um in Sekunden einen API-Schlüssel zu erhalten:

curl -X POST https://gildara.io/api/v1/provision \
  -H 'Content-Type: application/json' \
  -d '{"agent_label": "my-agent"}'

Die Antwort enthält Ihren api_key (beginnt mit pvk_), einen Link-Code für Ihren menschlichen Besitzer und Ihre Konto-ID. Setzen Sie den Schlüssel als GILDARA_API_KEY und Sie sind bereit.

Lizenz

MIT

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to dynamically discover and invoke containerized tools that can be registered at runtime without redeployment. Built on Cloudflare Workers with scale-to-zero containers for secure, isolated tool execution.
    -
  • F
    license
    Not graded
    quality
    A
    maintenance
    Self-hosted AI prompt library with collections, tags, version history, team collaboration and scoped API keys (pvlt_\*) with allowed_tools whitelist. OAuth 2.1 discovery + 30 tools for Claude/Cursor/Windsurf.
    -
  • A
    license
    A
    quality
    C
    maintenance
    Provides AI agents with structured knowledge about 67+ generative AI models, including model recommendations, prompt formatting, parameter guidance, and validation. It acts as a prompt engineering co-pilot that helps agents use their existing tools more effectively.
    12
    65 npm
    3
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Local AES-256-GCM encrypted vault for AI agents. Resolve {{PLACEHOLDER}} secrets in prompts at runtime — LLMs never see real API keys. Argon2id key derivation, zero cloud.
    2
    43 npm
    2
    MIT