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에게 다음과 같이 말해보세요:

"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"

환경 변수

변수

필수

설명

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_key( pvk_로 시작), 사용자 소유자를 위한 링크 코드, 계정 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