참조
참조 (Reference)
이 페이지는 Claude Managed Agents의 참조 자료를 모아 놓았어요. 이벤트 유형, 셀프 호스팅 워커 CLI 플래그, 지원되는 MCP 서버 유형, 속도 제한, 그리고 브랜딩 가이드라인까지 한눈에 볼 수 있어요. 작업 지향 가이드가 필요하면 각 섹션의 링크를 따라가세요. 세션 리소스의 작업(operation)은 Session operations에서 다루어요.
출처: 문서
본문
이 페이지는 Claude Managed Agents의 참조 자료를 모아 놓아요. 작업 지향 가이드는 각 섹션의 링크를 따라가세요. 세션 리소스의 작업은 Session operations을 참고하세요.
Event types
영구 저장되는 이벤트 유형 문자열은 {domain}.{action} 명명 규칙을 따라요. 스트림 전용 이벤트 델타(Event deltas 탭 참고)는 예외예요. 보내기·스트리밍·나열은 Session event stream을, 웹훅 이벤트 유형은 Subscribe to webhooks에서 별도로 다루며, 일부 이름이 스트림과 다를 수 있어요(예: session.status_idled vs session.status_idle).
Message content in these events can include a `redacted` content block, `{"type": "redacted"}`: a placeholder for content withheld by Anthropic model policy. The block carries no other fields. Redacted blocks appear only in content the platform emits; a user event that includes one is rejected with a 400 error.
| Type | Description |
| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `span.model_request_start` | A model inference call has started. |
| `span.model_request_end` | A model inference call has completed. Includes `model_usage` with token counts. |
| `span.outcome_evaluation_start` | [Outcome](https://platform.claude.com/docs/en/managed-agents/define-outcomes) evaluation has started. |
| `span.outcome_evaluation_ongoing` | Heartbeat during an ongoing [outcome](https://platform.claude.com/docs/en/managed-agents/define-outcomes) evaluation. |
| `span.outcome_evaluation_end` | An [outcome](https://platform.claude.com/docs/en/managed-agents/define-outcomes) evaluation cycle has completed. A `needs_revision` result means another cycle follows; `satisfied`, `max_iterations_reached`, `failed`, and `interrupted` are terminal. |
| Type | Description |
| ------------- | ------------------------------------------------------------------------------------------------------------------------ |
| `event_start` | A previewed event has started generating. Carries the upcoming event's `type` and `id`. Stream-only and never persisted. |
| `event_delta` | Incremental content for a previewed event, identified by `event_id`. Stream-only and never persisted. |
Self-hosted worker
self_hosted 환경을 구동하는 미리 빌드된 워커를 위한 ant beta:worker CLI 플래그들이에요. 환경 설정, 워커 실행, SDK 헬퍼 옵션은 Self-hosted sandboxes를 참고하세요.
| Flag | Description |
|---|---|
--environment-id |
The environment to poll for work. Also reads from ANTHROPIC_ENVIRONMENT_ID. |
--environment-key |
Authenticates the worker with this environment. Also reads from ANTHROPIC_ENVIRONMENT_KEY. |
--workdir |
Directory where skills are downloaded and tools read and write files. Defaults to . (the current directory); the system default working directory is /workspace. |
--on-work |
Script to call for each claimed work item instead of running tools in-process. Receives session details as environment variables. |
--unrestricted-paths |
Allow the file tools to read and write paths outside --workdir. The workdir check is a guardrail for the file tools only, not a sandbox; it does not constrain bash. |
--max-idle |
How long to wait after the session goes idle with an end_turn stop reason before shutting down. Defaults to 60s. |
--log-format |
Log output format. Use json for structured log ingestion. Defaults to text. |
CLI 워커는 메모리 스토어를 마운트하지 않아요: 하나를 붙인 세션은 여전히 실행되지만, 에이전트는 스토어의 mount_path에서 아무것도 찾지 못하고 변경도 스토어로 다시 동기화되지 않아요. 셀프 호스팅 환경의 세션에서 메모리 스토어를 사용하려면 대신 SDK 워커를 실행하세요. Use memory stores를 참고하세요.
Supported MCP server types
Claude Managed Agents는 HTTP 엔드포인트를 노출하는 원격 MCP 서버에 연결하거나, MCP tunnels을 통해 프라이빗 MCP 서버에 연결해요. 서버는 MCP 프로토콜의 streamable HTTP 전송을 지원해야 해요. deprecated된 SSE 전송만 지원하는 서버는 자동 폴백을 통해 여전히 작동해요. 에이전트에 서버를 선언하는 방법은 MCP connector를 참고하세요.
MCP와 MCP 서버 구축에 대한 자세한 내용은 MCP documentation을 참고하세요.
Rate limits
Managed Agents 엔드포인트는 조직별로 속도가 제한돼요:
| Operation | Limit |
|---|---|
| Create endpoints (such as agents, sessions, and environments) | 300 requests per minute |
| Read endpoints (such as retrieve, list, and stream) | 1,200 requests per minute |
조직 수준의 spend limits and usage-tier rate limits도 적용돼요.
Branding guidelines
Claude Managed Agents를 통합하는 파트너는 Claude 브랜딩 사용이 선택 사항이에요. 제품에서 Claude를 언급할 때:
Allowed:
- "Claude Agent" (preferred for dropdown menus)
- "Claude" (when within a menu already labeled "Agents")
- "{YourAgentName} Powered by Claude" (if you have an existing agent name)
Not permitted:
- "Claude Code" or "Claude Code Agent"
- "Claude Cowork" or "Claude Cowork Agent"
- Claude Code-branded ASCII art or visual elements that mimic Claude Code
제품은 자체 브랜딩을 유지하고 Claude Code, Claude Cowork 또는 다른 Anthropic 제품처럼 보이면 안 돼요. 브랜딩 준수에 관한 질문은 Anthropic sales team에 연락하세요.
더 알아보기 (Learn more)
- Session operations — 세션 리소스 작업
- Session event stream — 이벤트 보내기·스트리밍·나열
- Subscribe to webhooks — 웹훅 이벤트 유형
- MCP connector — 에이전트에 MCP 서버 연결하기