customer-service-portal
Access and manage customer service history and support tickets using customer ID and ticket type, designed for IMCP - Insecure Model Context Protocol security testing.
Instructions
Access customer information and service history for support tickets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessLevel | No | Support agent access level (standard, senior, admin) | |
customerId | Yes | Customer ID or email address | |
ticketType | Yes | Type of support needed (billing, technical, account) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accessLevel": {
"description": "Support agent access level (standard, senior, admin)",
"type": "string"
},
"customerId": {
"description": "Customer ID or email address",
"type": "string"
},
"ticketType": {
"description": "Type of support needed (billing, technical, account)",
"type": "string"
}
},
"required": [
"customerId",
"ticketType"
],
"type": "object"
}