Skip to main content
Glama

@gildara/mcp-server

Gildara 用のMCPサーバー — プロンプト保管庫をあらゆるAIツールで利用可能にします。

機能

GildaraのプロンプトライブラリをClaude Desktop、Cursor、Windsurf、およびMCP互換ツールに接続します。AIアシスタントは以下のことが可能です:

  • プロンプトのリスト表示 — 保管庫を閲覧

  • プロンプトの解決 — 運用契約が組み込まれたコンパイル済みのシステムプロンプトを取得

  • プロンプトの実行 — 自動修復(JSONスキーマ検証 + 再試行)付きで実行

  • プロンプトの作成 — AIセッションから新しいプロンプトを保存

  • 設計図の閲覧 — 事前に構築されたエージェントテンプレートを確認

Related MCP server: promtlab

セットアップ

1. APIキーの取得

エージェント用(ブラウザ不要):

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

APIキー(pvk_...)が即座に返されます。サインアップは不要です。

人間用: gildara.io/account にアクセスし、agent-standard プリセットでAPIキーを作成してください。

2. Claude Desktopへの追加

~/Library/Application Support/Claude/claude_desktop_config.json(macOS)または %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. Cursorへの追加

プロジェクトルートの .cursor/mcp.json を編集します:

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

4. Claude Codeへの追加

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

その後、環境変数に GILDARA_API_KEY を設定してください。

ツール

ツール

説明

list_prompts

保管庫内のすべてのプロンプトをリスト表示

get_prompt

プロンプトの詳細と運用契約設定を取得

resolve_prompt

契約セクションを含むコンパイル済みシステムプロンプトを取得

run_prompt

自動修復機能を使用してAI経由でプロンプトを実行

create_prompt

新しいプロンプトを作成

list_blueprints

エージェントの設計図テンプレートを閲覧

使用例

接続後、AIに次のように指示するだけです:

"Gildaraのプロンプトをリスト表示して" "code_diff変数を使ってcode-review-agentプロンプトを解決して" "このコードに対してsecurity-auditプロンプトを実行して" "このプロンプトをGildara保管庫に保存して"

環境変数

変数

必須

説明

GILDARA_API_KEY

はい

APIキー(pvk_...)。即座に取得するには:curl -X POST https://gildara.io/api/v1/provision -H "Content-Type: application/json" -d '{"agent_label":"my-agent"}'

GILDARA_BASE_URL

いいえ

API URLの上書き(デフォルト:https://gildara.io

ブラウザを使わずにキーを取得する方法

サインアップは不要です。以下を実行すると数秒でAPIキーを取得できます:

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

レスポンスには api_keypvk_で始まる)、人間用オーナーへのリンクコード、およびアカウントIDが含まれます。キーを GILDARA_API_KEY として設定すれば準備完了です。

ライセンス

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