Support Ticket Validator
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Support Ticket ValidatorCheck if ticket has required fields: subject and description"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Support Ticket Validator
Support Ticket Validator checks whether supplied support ticket data contains required fields and returns a structured completeness status.
Boundary
This app is read-only, stateless, deterministic, and has no external side effects. It does not authenticate users, call external APIs, use OAuth, store data, update support systems, reply to customers, approve refunds, close tickets, assign responsibility, or provide open-ended support strategy.
Developer Mode testing, production deployment, and formal submission are outside the current gate and have not been performed.
Related MCP server: Zendesk MCP Server
Technology
Cloudflare Workers
TypeScript
npm
wrangler
Project Structure
support-ticket-validator/
├── package.json
├── package-lock.json
├── tsconfig.json
├── wrangler.jsonc
├── README.md
├── src/
│ ├── html.d.ts
│ ├── index.ts
│ ├── schemas.ts
│ ├── tool.ts
│ └── pages/
│ ├── home.html
│ ├── privacy.html
│ ├── terms.html
│ └── support.html
└── scripts/
└── test-mcp-local.mjsInstall
npm installLocal Development
npm run devThe local Worker defaults to:
http://127.0.0.1:8787Checks
TypeScript:
npm run typecheckGET /:
curl http://127.0.0.1:8787/GET /health:
curl http://127.0.0.1:8787/healthLocal MCP regression:
npm run test:mcp:localTo run the regression against another local URL:
BASE_URL=http://127.0.0.1:8787 npm run test:mcp:localURLs
Website URL:
https://support-ticket-validator.sidcraigau.workers.devMCP URL:
https://support-ticket-validator.sidcraigau.workers.dev/mcpPrivacy URL:
https://support-ticket-validator.sidcraigau.workers.dev/privacyTerms URL:
https://support-ticket-validator.sidcraigau.workers.dev/termsSupport URL:
https://support-ticket-validator.sidcraigau.workers.dev/support
MCP Tool
Tool name:
validate_support_ticket_completenessTool title:
Validate Support Ticket Completeness
Input fields:
ticket: support ticket fields keyed by field name.required_fields: field names that should be present and non-empty.source_label: optional source label.request_intent: optional intent text used only for runtime boundary checks.
Output fields:
statusis_completechecked_fieldspresent_fieldsmissing_fieldssource_labelerrors
Schema / Runtime Boundary
The JSON Schema layer declares top-level shape, allowed fields, and basic JSON types. It intentionally does not set minProperties, minItems, or string minLength, because empty tickets, empty required field lists, blank field names, and empty business values must reach the Tool Runtime and return the unified Error Contract.
Runtime type validation handles non-object arguments, missing required inputs, non-object tickets, array or null tickets, non-array required_fields, non-string required_fields items, and invalid optional string fields.
Business validation handles empty ticket data, empty normalized required field lists, duplicate and whitespace field names, empty values, and out-of-scope request intents.
Error Contract
All success, incomplete, and error responses use the same outputSchema. Error records contain:
code: one ofmissing_required_input,invalid_input_type,empty_input,out_of_scope,internal_errormessage: human-readable error summaryfield: input field related to the error, or an empty string for general errors
Prohibited Capabilities
This project does not include customer replies, refund approval, refund rejection, ticket closure, ticket status updates, classification, extraction from unstructured messages, CRM or support platform integration, database access, OAuth, login, AI model calls, external APIs, emails, or external writes.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/YanKe1816/support-ticket-validator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server