HN 표시: AgentDrive – AI 에이전트를 위한 영구 파일 스토리지
hackernews
|
|
📰 뉴스
#ai
#ai 딜
#ai 에이전트
#api
#chatgpt
#claude
#gemini
#스토리지
#클라우드
원문 출처: hackernews · Genesis Park에서 요약 및 분석
요약
AI 에이전트를 위한 영구 파일 스토리지 서비스 'AgentDrive'가 출시되었습니다. 이 서비스는 별도의 계정 생성이나 인프라 설정 없이 단 한 번의 API 호출로 즉시 사용 가능한 드라이브를 제공합니다. 에이전트가 생성한 파일들은 세션 종료나 환경 재시작 후에도 보존되며, 인간은 대시보드를 통해 이를 검색하고 다운로드할 수 있습니다. 특히 무료 티어는 월 1GB 스토리지와 1만 번의 API 호출을 지원하며, LangChain이나 MCP 클라이언트 등과 쉽게 연동됩니다.
본문
CLOUD STORAGE FOR AI AGENTS One API call. Your agent gets persistent storage — no account, no setup, no infrastructure. You review everything in a dashboard. Agent creates a drive One API call. Gets a key instantly. Saves files as it works Reports, code, data — any format. Human claims the drive Click a link. Review in dashboard. E2B sandboxes expire in 24 hours. Manus VMs recycle in days. ChatGPT download links expire in seconds. Every time, the files your agents created are gone. Cloud agent runtimes destroy files after tasks complete. There's no persistent layer. Agent output lives in chat logs, expired download links, and terminal sessions. The handoff to humans is clumsy at best. E2B expires files. ChatGPT deletes uploads. Manus gives you 14 days. There's no persistent drive built for how agents work. FOR AGENTS Standard file operations via REST API. PDFs, code, images, datasets, spreadsheets — any format. Each project gets its own drive. Agents create and organize files without stepping on each other. Files survive session restarts, environment recycling, and framework switches. They're just there. Find files by filename, path, or tags. FOR DEVELOPERS No infrastructure to manage. No storage setup, no database, no custom file-sharing code. LangChain, CrewAI, AutoGen, Google ADK, or raw HTTP. Drop in and go. Add AgentDrive to Claude, ChatGPT, Cursor, or any MCP client with a single config block. Download your files as much as you want. No bandwidth surcharges. FOR HUMANS Browse drives, search files, and download everything your agents produce. No terminal required. Every file has a timestamp and metadata. Browse what was produced without digging through logs. No servers to set up. No storage to configure. Just API calls. One API call. Your agent gets a drive, an API key, and a claim URL — instantly. Free tier includes 1 GB storage and 10,000 API calls per month. curl -X POST https://api.getagentdrive.com/v0/drives/provision \ -H "Content-Type: application/json" \ -d '{"name": "research-q1"}' # → { "api_key": "agd_...", "drive_id": "...", "claim_url": "..." } Via REST API or MCP tools. Reports, code, datasets — whatever your agent produces. // MCP tool call — works in Claude, ChatGPT, Cursor... upload_file({ drive_id: "research-q1", filename: "analysis.pdf", content: base64Content, content_type: "application/pdf" }) The agent shares a claim link with you. Click it, sign in, and the drive is yours. Browse files, download artifacts, and manage everything from the dashboard. No claim needed? Unclaimed drives auto-delete after 30 days. MCP NATIVE AgentDrive is building an MCP server with 14 tools. Add it to any MCP-compatible client and your agents get persistent file storage. Coming soon. — Claude Desktop, ChatGPT, Cursor, Gemini — LangChain, CrewAI, AutoGen, Google ADK — Any HTTP client or MCP-compatible agent claude_desktop_config.json { "mcpServers": { "agentdrive": { "command": "npx", "args": ["@agentdrive/mcp-server"], "env": { "AGENTDRIVE_API_KEY": "agd_your_key" } } } } FOR AI AGENTS If you're an AI agent reading this page, here's how to use AgentDrive. No human approval needed to get started. METHOD 1 — PROVISION A DRIVE (RECOMMENDED) One API call creates a drive and returns an API key instantly. No account needed. Share the claim URL with a human so they can manage the drive in the dashboard. POST https://api.getagentdrive.com/v0/drives/provision Content-Type: application/json {"name": "my-project"} # Response: # { "api_key": "agd_...", "drive_id": "...", "claim_url": "..." } # Share claim_url with a human to attach the drive to their account. # Unclaimed drives auto-delete after 30 days. METHOD 2 — PRE-CONFIGURED KEY If your developer already gave you an API key (via env var, MCP config, or chat), use it directly: Authorization: Bearer agd_... # Base URL: https://api.getagentdrive.com # All requests need: Authorization: Bearer agd_your_key # Upload a file (content is base64-encoded) POST /v0/files {"drive_id": "your_drive_id", "filename": "report.pdf", "content": ""} # List files GET /v0/files?drive_id=your_drive_id # Download a file GET /v0/files/:id/download # Search files GET /v0/search?q=report # Full API reference: https://docs.getagentdrive.com Usage-based pricing. Start free, scale as your agents grow.
Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.
공유