> ## Documentation Index
> Fetch the complete documentation index at: https://manual.seahorse.dnotitia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

> 템플릿 선택 또는 커스텀 설정으로 새 도구 등록

# Tool create

# 도구 생성

**경로**: Console → **Agent Ops → Tool Management** → **+ 도구 생성**

템플릿을 선택하거나 커스텀 설정으로 새 도구를 만듭니다.

## 1. 서비스 템플릿 선택

원클릭으로 MCP 서버 설정이 주입되는 사전 정의 템플릿:

<Tabs>
  <Tab title="GitHub">
    * **URL 파라미터**: `?template=github`
    * **전송방식**: `stdio`
    * **Command**: `npx`
    * **Args**: `-y`, `@modelcontextprotocol/server-github`
    * **Env**: `GITHUB_PERSONAL_ACCESS_TOKEN` (선택)
    * **도구 수**: 26개 — 커밋/PR/이슈/코드 검색

    [GitHub 템플릿 상세](/console/agent-ops/agent-tool/templates/github)
  </Tab>

  <Tab title="Atlassian">
    * **URL 파라미터**: `?template=atlassian`
    * **대상 서비스**: Jira / Confluence

    [Atlassian 템플릿 상세](/console/agent-ops/agent-tool/templates/atlassian)
  </Tab>

  <Tab title="PostgreSQL">
    * **URL 파라미터**: `?template=postgresql`
    * **내부 구현**: `rdb_server.py` (구 RDB Endpoint 통합)

    [PostgreSQL 템플릿 상세](/console/agent-ops/agent-tool/templates/postgresql)
  </Tab>

  <Tab title="Slack">
    * **URL 파라미터**: `?template=slack`

    [Slack 템플릿 상세](/console/agent-ops/agent-tool/templates/slack)
  </Tab>
</Tabs>

## 2. 커스텀 도구

템플릿이 없는 MCP 서버는 직접 등록. 자세한 설정: [커스텀 도구](/console/agent-ops/agent-tool/custom-create)

## 공통 필드

<Steps>
  <Step title="기본 정보">
    **Name**, **Description** 입력.
  </Step>

  <Step title="전송 방식 (Transport)">
    * `stdio` — 로컬 프로세스 표준 입출력
    * `http` — 원격 HTTP 엔드포인트
    * `sse` — Server-Sent Events
  </Step>

  <Step title="Command / Args">
    * **Command**: 실행 바이너리 (예: `npx`, `python`)
    * **Args**: 실행 인자 배열
  </Step>

  <Step title="Environment Variables">
    * **key / value** 쌍
    * **required**: 필수 여부
    * **valueSource**: `user_input` / `system_default` / `vault`
  </Step>

  <Step title="접근 권한">
    * **Private**: 본인만 사용
    * **Public**: 조직 내 공유
  </Step>
</Steps>

<Warning>
  시크릿 값은 `system_default` 또는 `vault` 소스를 사용하세요. 평문 입력은 비권장.
</Warning>
