Talandor
Public MCP report

APICK Convert

https://apick.app/mcp/convert

Official Registry

Official Registry · app.apick/convert · Publisher: app.apick

Last observed

Operational
Can I use it?

Insufficient evidence

Insufficient evidence is a limit of this public check, not a judgment that the server is unusable. Retry later.

https://apick.app/mcp/convert
Tools22
AuthNo authentication challenge observed
Protocol2026-07-28
EvidenceTransport only
Latency4982 ms

See the measured evidence

Client fit

Compatibility is inferred from published configuration rules and is not manually verified in each client.

Client setup cannot be inferred yet. This public check did not observe a complete tool contract or an authentication challenge, so there is no honest compatibility signal.

Show compatibility evidence

Rule evidence: Remote HTTPS rule v0.2 · reviewed 2026-09-12 · Remote HTTP rule v0.2 · reviewed 2026-09-12 · Remote app rule v0.2 · reviewed 2026-09-12 · Protocol and transport rule v0.2 · reviewed 2026-09-12

What changed

Public contract stable since
Last compared · No semantic contract change since the previous complete snapshot.
Info
tts_jobs_create restricted the allowed values for voice_id
· critical · high confidence · tts_jobs_create · Rule: input-enum-restricted
Critical

A Watch would alert only if this change may affect the selected client.

Evidence and limitations

Method: anonymous Streamable HTTP probe. We never invoke a tool.

Attempted protocols: 2026-07-28

Protocol2026-07-28
TransportStreamable HTTP
AuthNo authentication challenge observed
EvidenceTransport only
Total latency4982 ms
Response bytes17684

No diagnostic errors.

Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
Tools and declared exposure

Server annotations are declarations, not verified behavior.

Show 22 of 22 server-provided tool definitions
base64_to_image
Declared read-only
Show server-provided details
base64 이미지 변환
Server description (copied; language not verified)
Decode a base64-encoded image string back into an image file. base64 로 인코딩된 이미지 문자열을 원본 이미지 파일로 디코딩해 반환합니다. "data:image/타입;base64," 접두어가 붙은 문자열도 허용됩니다. [호출당 2포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "base64"
  ],
  "properties": {
    "base64": {
      "type": "string",
      "description": "이미지 base64 문자열 (data:image/타입;base64, 접두어 허용)"
    }
  }
}
docx_to_pdf
Declared read-only
Show server-provided details
DOCX 파일을 PDF 파일로 변환
Server description (copied; language not verified)
Convert a DOCX (Word) file to a PDF file. DOCX 파일을 PDF 파일로 변환해 반환합니다. DOCX 형식의 파일만 허용됩니다. [호출당 80포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "docx_url"
  ],
  "properties": {
    "docx_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: application/vnd.openxmlformats-officedocument.wordprocessingml.document) (최대 25MB)"
    }
  }
}
draw_watermark_image
Declared read-only
Show server-provided details
Image 워터마크 삽입
Server description (copied; language not verified)
Draw a visible text watermark across an image. 이미지 파일에 텍스트 워터마크를 삽입한 PNG 이미지를 반환합니다. 글자 크기·색상·투명도·밀집도를 조절할 수 있으며, PNG, JPEG 등 일반 이미지 포맷을 지원합니다. [호출당 10포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "image_url",
    "wm"
  ],
  "properties": {
    "wm": {
      "type": "string",
      "description": "워터마크 문자열 (최대 30자)"
    },
    "color": {
      "type": "string",
      "description": "워터마크 색상 HEX (000000 ~ FFFFFF, 기본값 EEEEEE)"
    },
    "density": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "워터마크 글자 밀집도 (5 ~ 15, 기본값 10)"
    },
    "opacity": {
      "type": "number",
      "description": "워터마크 투명도 (0 ~ 1, 기본값 0.5)"
    },
    "font_size": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "워터마크 글자 크기 (10 ~ 100, 기본값 10)"
    },
    "image_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: image/png, image/jpeg, image/webp, image/bmp) (최대 50MB)"
    }
  }
}
draw_watermark_pdf
Declared read-only
Show server-provided details
PDF 워터마크 삽입
Server description (copied; language not verified)
Draw a visible text watermark across every page of a PDF file. PDF 파일 전체 페이지에 텍스트 워터마크를 삽입한 PDF 를 반환합니다. 글자 크기·색상·투명도·각도·밀집도·적용 영역을 조절할 수 있으며, PDF 형식의 파일만 허용됩니다. [호출당 10포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "pdf_url",
    "wm"
  ],
  "properties": {
    "wm": {
      "type": "string",
      "description": "워터마크 문자열 (최대 30자)"
    },
    "angle": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "워터마크 각도 (0 ~ 360, 기본값 35)"
    },
    "color": {
      "type": "string",
      "description": "워터마크 색상 HEX (000000 ~ FFFFFF, 기본값 EEEEEE)"
    },
    "width": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "워터마크 적용 너비 (0 ~ 2000, 기본값 550, A4 기준)"
    },
    "height": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "워터마크 적용 높이 (0 ~ 2000, 기본값 800, A4 기준)"
    },
    "density": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "워터마크 글자 밀집도 (100 ~ 200, 기본값 150)"
    },
    "opacity": {
      "type": "number",
      "description": "워터마크 투명도 (0 ~ 1, 기본값 0.05)"
    },
    "pdf_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: application/pdf) (최대 25MB)"
    },
    "font_size": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "워터마크 글자 크기 (8 ~ 30, 기본값 10)"
    }
  }
}
face_blur
Declared read-only
Show server-provided details
얼굴 모자이크 처리
Server description (copied; language not verified)
Detect faces in an image and blur (mosaic) them. 이미지 파일에서 얼굴을 인식해 해당 영역을 모자이크 처리한 이미지(JPEG)를 반환합니다. PNG, JPEG 등 일반 이미지 포맷을 지원합니다. [호출당 20포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "image_url"
  ],
  "properties": {
    "image_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: image/png, image/jpeg, image/webp, image/bmp) (최대 50MB)"
    },
    "threshold": {
      "type": "number",
      "description": "얼굴 추출 민감도 (0 ~ 0.9, 기본값 0.5, 작을수록 민감하게 추출)"
    }
  }
}
get_watermark
Declared read-only
Show server-provided details
비가시성 워터마크 조회
Server description (copied; language not verified)
Read the invisible watermark code embedded in an image. 이미지에 삽입된 비가시성 워터마크 코드를 조회해 JSON 으로 반환합니다. 이미지가 일부 변형되어도 높은 확률로 워터마크를 확인할 수 있습니다. PNG, JPEG 등 일반 이미지 포맷을 지원합니다. [호출당 10포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "image_url"
  ],
  "properties": {
    "image_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: image/png, image/jpeg, image/webp, image/bmp) (최대 50MB)"
    }
  }
}
html_to_pdf
Declared read-only
Show server-provided details
HTML PDF 변환
Server description (copied; language not verified)
Render HTML code into a PDF file. HTML 코드를 렌더링해 PDF 파일로 변환합니다. HTML 문자열을 입력하면 변환된 PDF 파일을 반환합니다. [호출당 30포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "html"
  ],
  "properties": {
    "html": {
      "type": "string",
      "description": "변환할 HTML 코드"
    },
    "pagination": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "페이지 번호 표시 여부 (0: 없음(기본값), 1: 표시)"
    }
  }
}
json_to_excel
Declared read-only
Show server-provided details
JSON 데이터 EXCEL 파일 변환
Server description (copied; language not verified)
Convert JSON data into an Excel (XLSX) file. JSON 데이터를 EXCEL(XLSX) 파일로 변환해 반환합니다. data_list 는 객체 배열([{"컬럼":"값", ...}, ...]) 또는 2차원 배열([[...], ...]) 형식을 지원합니다. [호출당 1포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "data_list"
  ],
  "properties": {
    "data_list": {
      "type": "array",
      "items": {},
      "description": "변환할 데이터 목록. 객체 배열 또는 2차원 배열 (2차원 배열은 모든 행의 열 개수가 같아야 함)"
    },
    "sheet_name": {
      "type": "string",
      "description": "엑셀 시트 이름"
    }
  }
}
pdf_merge
Declared read-only
Show server-provided details
PDF 파일 합치기
Server description (copied; language not verified)
Merge two PDF files into one. 두 개의 PDF 파일을 순서대로 하나의 PDF 파일로 합쳐 반환합니다. PDF 형식의 파일만 허용됩니다. [호출당 2포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "pdf_url_1",
    "pdf_url_2"
  ],
  "properties": {
    "pdf_url_1": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: application/pdf) (최대 25MB)"
    },
    "pdf_url_2": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: application/pdf) (최대 25MB)"
    }
  }
}
pdf_to_docx
Declared read-only
Show server-provided details
PDF 파일 DOCX 변환
Server description (copied; language not verified)
Convert a PDF file to a DOCX (Word) file. PDF 파일을 DOCX 파일로 변환해 반환합니다. PDF 형식의 파일만 허용됩니다. [호출당 30포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "pdf_url"
  ],
  "properties": {
    "pdf_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: application/pdf) (최대 25MB)"
    }
  }
}
pdf_to_image
Declared read-only
Show server-provided details
PDF 파일 이미지 변환
Server description (copied; language not verified)
Convert each page of a PDF file to PNG images, returned as a ZIP archive. PDF 파일의 각 페이지를 PNG 이미지로 변환하고 ZIP 파일로 묶어 반환합니다. PDF 형식의 파일만 허용됩니다. [호출당 2포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "pdf_url"
  ],
  "properties": {
    "pdf_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: application/pdf) (최대 25MB)"
    }
  }
}
set_watermark
Declared read-only
Show server-provided details
비가시성 워터마크 삽입
Server description (copied; language not verified)
Embed an invisible watermark code into an image. 원본 이미지에 보이지 않는 워터마크 코드를 삽입한 PNG 이미지를 반환합니다. 이미지가 일부 변형되어도 높은 확률로 워터마크를 확인할 수 있습니다. PNG, JPEG 등 일반 이미지 포맷을 지원합니다. [호출당 10포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "code",
    "image_url"
  ],
  "properties": {
    "code": {
      "type": "integer",
      "maximum": 9007199254740991,
      "minimum": -9007199254740991,
      "description": "삽입할 워터마크 코드 (1 ~ 21,767,823,359 사이의 숫자)"
    },
    "image_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: image/png, image/jpeg, image/webp, image/bmp) (최대 50MB)"
    }
  }
}
stt
Declared read-only
Show server-provided details
오디오 텍스트 변환(STT)
Server description (copied; language not verified)
Convert a speech audio file to text (STT). 음성 파일을 텍스트로 변환합니다. MP3, WAV, M4A, AAC, OGG, FLAC, WEBM 등 일반적인 오디오 포맷을 지원하며, 변환된 텍스트를 JSON으로 반환합니다. [호출당 50포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "audio_url"
  ],
  "properties": {
    "language": {
      "type": "string",
      "description": "추출 언어 코드 (예: ko, en, ja). 기본값 ko"
    },
    "audio_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: audio/mpeg, audio/mp3, audio/wav, audio/x-wav, audio/mp4, audio/aac, audio/ogg, audio/flac, audio/webm) (최대 200MB)"
    }
  }
}
tts_jobs_cancel
Declared destructive
Show server-provided details
TTS 작업 취소
Server description (copied; language not verified)
Cancel a waiting or processing TTS job without refunding the accepted charge. waiting 또는 processing 상태의 TTS 작업을 취소합니다. 접수 시 과금된 금액은 환불되지 않습니다. [추가 과금 없음]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "job_id"
  ],
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "maxLength": 32,
      "minLength": 32,
      "description": "취소할 32자리 ID"
    }
  }
}
tts_jobs_candidate_audio
Declared read-only
Show server-provided details
TTS 후보 음원
Server description (copied; language not verified)
품질 이력의 후보 WAV를 조회합니다. 최종 결과의 일회 다운로드를 소비하지 않습니다. REST에서는 Range 재생을 지원합니다. [무료]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "candidate_id",
    "job_id"
  ],
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "description": "소유한 작업 ID"
    },
    "candidate_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "description": "품질 이력의 후보 ID"
    }
  }
}
tts_jobs_create
Annotation present; effect not classified
Show server-provided details
TTS 작업 접수
Server description (copied; language not verified)
Create an asynchronous Korean narration job with one of 16 voices. 16개 한국어 내레이션 목소리 중 하나로 비동기 TTS 작업을 접수합니다. text는 최대 800자이며 접수 성공 시 과금되고 이후 취소해도 환불되지 않습니다. [100자당 10포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "text",
    "voice_id"
  ],
  "properties": {
    "text": {
      "type": "string",
      "maxLength": 800,
      "minLength": 1,
      "description": "합성할 한국어 텍스트 (최대 800자)"
    },
    "voice_id": {
      "enum": [
        "v2_ann_m_30s_01",
        "v2_ann_m_30s_02",
        "v2_ann_m_30s_04",
        "v2_ann_m_30s_05",
        "v2_ann_f_30s_01",
        "v2_ann_f_30s_02",
        "v2_ann_f_30s_03",
        "v2_ann_f_30s_04",
        "v2_ann_f_30s_05",
        "v2_m_teen_01",
        "v2_m_young_01",
        "v2_m_mid_01",
        "v2_m_senior_01",
        "v2_f_teen_01",
        "v2_f_young_01",
        "v2_f_senior_01"
      ],
      "type": "string",
      "description": "지원 voice_id"
    }
  }
}
tts_jobs_quality
Declared read-only
Show server-provided details
TTS 품질 이력
Server description (copied; language not verified)
TTS 발화별 검수 결과와 후보 이력을 조회합니다. 종료 후 72시간 보존되며 최종 결과 다운로드를 소비하지 않습니다. [무료]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "job_id"
  ],
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "description": "소유한 작업 ID"
    }
  }
}
tts_jobs_result
Declared destructive
Show server-provided details
TTS MP3 결과 다운로드
Server description (copied; language not verified)
Download the completed MP3 result once as base64. 완료된 TTS MP3 결과를 base64로 한 번 내려받습니다. 호출이 시작되면 서버 원본이 소모되므로 재실행할 수 없습니다. [추가 과금 없음]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "job_id"
  ],
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "maxLength": 32,
      "minLength": 32,
      "description": "completed 상태인 32자리 ID"
    }
  }
}
tts_jobs_retry
Declared idempotent
Show server-provided details
TTS 발화 재개
Server description (copied; language not verified)
실패 발화만 같은 작업에서 재개합니다. 동일 멱등 키는 중복 실행·과금되지 않습니다. [추가 과금 없음]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "idempotency_key",
    "job_id",
    "utterance_ids"
  ],
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "description": "소유한 작업 ID"
    },
    "utterance_ids": {
      "type": "array",
      "items": {},
      "description": "u001부터 시작하는 실패 발화 ID 목록"
    },
    "idempotency_key": {
      "type": "string",
      "maxLength": 128,
      "minLength": 8,
      "description": "동일 재개 요청에 재사용하는 키"
    }
  }
}
tts_jobs_status
Declared read-only
Show server-provided details
TTS 작업 상태 조회
Server description (copied; language not verified)
Get the public status and result availability of a TTS job. TTS 작업의 waiting, processing, completed, cancelled, failed 상태와 MP3·ASS 자막 준비 여부를 조회합니다. [무료]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "job_id"
  ],
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "maxLength": 32,
      "minLength": 32,
      "description": "작업 접수에서 받은 32자리 ID"
    }
  }
}
tts_jobs_subtitles
Declared destructive
Show server-provided details
TTS ASS 자막 다운로드
Server description (copied; language not verified)
Download the completed ASS subtitles once as base64. 완료된 TTS의 발화 타이밍 ASS 자막을 base64로 한 번 내려받습니다. 호출이 시작되면 자막 원본이 소모되므로 재실행할 수 없습니다. [추가 과금 없음]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "job_id"
  ],
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[a-f0-9]{32}$",
      "maxLength": 32,
      "minLength": 32,
      "description": "completed 상태인 32자리 ID"
    }
  }
}
voice_change
Declared read-only
Show server-provided details
음성 변조
Server description (copied; language not verified)
Modulate the voice in a video or audio file to a lower or higher pitch. 동영상 또는 오디오 파일의 음성을 저음 또는 고음으로 변조합니다. MP3, WAV 등 오디오와 MP4, MOV 등 동영상 포맷을 지원하며, 변조된 파일을 반환합니다. [호출당 10포인트]
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "media_url",
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "변조음 타입 (1: 저음, 2: 고음)"
    },
    "media_url": {
      "type": "string",
      "description": "다운로드 가능한 https URL (허용 형식: audio/mpeg, audio/mp3, audio/wav, audio/x-wav, audio/mp4, audio/aac, audio/ogg, video/mp4, video/quicktime, video/x-msvideo, video/x-matroska, video/webm) (최대 200MB)"
    }
  }
}

How to use this MCP

Talandor checks the server; it does not connect the server to your assistant.

Choose your client below, then copy the endpoint or configuration. Authentication is completed with the MCP provider, never inside Talandor.

Open the official client guide (opens in a new tab)
Observation history
Operational
· stable since
2026-07-28 · 22 tools · no change · 5 checks
Operational
2026-07-28 · 22 tools
Unreachable now
No protocol
Operational
· stable since
2026-07-28 · 22 tools · no change · 8 checks
Complete public contract · 2026-07-28 · 22 tools
348f31b5330d
Complete public contract · 2026-07-28 · 22 tools
a2b1f771779a

Deep monitoring eligibility

Not eligible yet

Only transport-level evidence was observed; no public tools/list contract was confirmed.

Personal Watch is not open yet. This report does not start a Watch or a payment.

See public monitoring
Watch · 9 €/month

Watch is not available for this evidence

This result does not yet expose a complete public contract or a qualified authentication surface, so there is nothing honest to watch yet. A Watch needs a complete public contract or a qualified authentication surface before it can monitor meaningful changes.

Full WatchAvailability, protocol, auth and public tool contract changes
Surface WatchAvailability, TLS, protocol and auth surface — no private tool diff

Watch checkout is not open. This page does not start a payment. You can sign in from the header; that creates an account, not a Watch. Opening date: not announced yet. Hosted checkout remains closed.

See Watch price, terms and refunds