We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vietnama10/knowledge-mcp-service'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Error Handling & File Management Policy
## 1. Validation Logic
- Every record must be validated in `ItemProcessor`.
- If invalid, do NOT throw an exception that stops the Job.
- Collect all error messages for that record into a string.
## 2. Error Reporting
- Generate an error CSV for every Job execution that has at least one invalid record.
- Error CSV Structure: All original source columns + 1 new column: `Error_Detail`.
## 3. Post-Job File Movement
- **Step 1**: Identify the status of the Job.
- **Step 2 (Success)**: If Job is COMPLETED and NO error records exist, move source to `/success`.
- **Step 3 (Failure/Partial)**: If Job is FAILED or Error Records > 0:
- Move source file to `/error`.
- Move generated `error_report.csv` to `/error`.