We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IgorKrupenja/buerokratt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
sql-restrictions.md•548 B
---
modules:
- Training-Module
- Analytics-Module
- Buerokratt-Chatbot
tags:
- backend
- sql
- database
- restrictions
description: SQL UPDATE and DELETE restrictions for modules that require immutable data
---
## SQL Restrictions
- **UPDATE and DELETE Statements**: UPDATE and DELETE statements are NOT ALLOWED. Use INSERT statements with SELECT
from existing records as a workaround:
- Copy all fields from existing record
- Modify only the fields that need to change
- Use `ORDER BY id DESC LIMIT 1` to get latest record