sieve_dataroom
List and monitor all documents and their processing status in a deal's data room to track uploaded files and content.
Instructions
List all documents in a deal's data room.
Shows what files and content have been uploaded for a deal, along with their processing status.
Args: deal_id: The deal ID (from sieve_deals or sieve_dataroom_add).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deal_id | Yes |
Implementation Reference
- src/sieve_mcp/server.py:254-263 (handler)The tool handler for "sieve_dataroom" which calls the client's dataroom method.
async def sieve_dataroom(deal_id: str) -> dict: """List all documents in a deal's data room. Shows what files and content have been uploaded for a deal, along with their processing status. Args: deal_id: The deal ID (from sieve_deals or sieve_dataroom_add). """ return await client.dataroom(deal_id)