add_person
Add a person to a mystery case with name, gender, roles, and optional details like birth date and notes. Returns the local ID of the added person.
Instructions
사건에 인물을 추가합니다. roles 예: ["피해자"], ["용의자"], ["참고인"], ["수사관"]. 추가된 인물의 local id를 반환합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| caseId | Yes | ||
| name | Yes | ||
| gender | Yes | ||
| roles | No | ||
| birthYear | No | ||
| birthMonth | No | ||
| birthDay | No | ||
| note | No | 인물 메모 | |
| notables | No | 특이사항 항목들 | |
| x | No | 인물관계도 X 좌표 (기본 0) | |
| y | No | 인물관계도 Y 좌표 (기본 0) |