update_call_transcript
Update call transcripts in the MCP JSON Database Server by modifying resolution status, follow-up requirements, and assigned user details. Ensure accurate and actionable meeting outcomes.
Instructions
Mevcut transkripti günceller
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignedTo | No | Atanan kullanıcı ID'si | |
| followUpRequired | No | Takip gerekli mi? | |
| id | Yes | Transkript ID'si | |
| resolution | No | Çözüm durumu | |
| token | Yes | JWT token |
Implementation Reference
- src/index.js:191-205 (registration)Registration of the 'update_call_transcript' tool in the ListToolsRequestHandler's tools array, including name, description, and input schema.{ name: 'update_call_transcript', description: 'Mevcut transkripti günceller', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'JWT token' }, id: { type: 'number', description: 'Transkript ID\'si' }, resolution: { type: 'string', description: 'Çözüm durumu' }, followUpRequired: { type: 'boolean', description: 'Takip gerekli mi?' }, assignedTo: { type: 'number', description: 'Atanan kullanıcı ID\'si' } }, required: ['token', 'id'] } },
- src/index.js:194-204 (schema)Input schema for the 'update_call_transcript' tool, defining parameters like token, id, resolution, followUpRequired, and assignedTo.inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'JWT token' }, id: { type: 'number', description: 'Transkript ID\'si' }, resolution: { type: 'string', description: 'Çözüm durumu' }, followUpRequired: { type: 'boolean', description: 'Takip gerekli mi?' }, assignedTo: { type: 'number', description: 'Atanan kullanıcı ID\'si' } }, required: ['token', 'id'] }