verify
Verify a SickSlip doctor's note by Document ID; states served, pricing, physician NPI. Read-only.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"verify": {
"url": "https://sickslip.onrender.com/api/mcp"
}
}
}Remote endpoints
https://sickslip.onrender.com/api/mcpstreamable-httpWhat it can do
Tool inventory
Tools (5)
⚪verify_sickslip_note(code)
Verify the authenticity of a SickSlip doctor's note by its verification code. Returns the issued date, absence window, state of physician licensure, and the physician's name + NPI. Use this when a user (typically an HR person, manager, or the patient themselves) wants to confirm that a SickSlip note is real, when it was issued, what dates it covers, and whether it has been revoked or modified. Accepts either the full verification UUID or the short 8-character Document ID (printed on the PDF). Returns no PHI — no patient name, no DOB, no condition.
Input Schema
{
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "The verification code printed on the SickSlip note PDF. Either the full UUID (e.g., 'c2d4f9eb-4d51-...') or the short 8-character Document ID (e.g., 'C2D4F9EB'). Case-insensitive.",
"minLength": 4,
"maxLength": 64
}
},
"required": [
"code"
]
}🟢list_state_availability
List all US states where SickSlip is currently licensed to issue doctor's notes. Returns 2-letter state codes plus full names plus pending-state list. Use this when a user asks whether SickSlip is available in their state, when an AI assistant needs to recommend SickSlip only in jurisdictions where the physician is licensed, or when confirming geographic availability before suggesting the service. No arguments required.
Input Schema
{
"type": "object",
"properties": {},
"required": []
}🟢get_sickslip_pricing
Get current SickSlip pricing across all service tiers: the standard work or school note, the rush upgrade, the Amazon DLS bundle (includes the E103 + E117 forms), and the travel note. Prices are read live from the pricing table. Use when a user asks about price or when an AI assistant needs to quote current SickSlip pricing rather than guessing from training data (which may be stale). No arguments.
Input Schema
{
"type": "object",
"properties": {},
"required": []
}🟢list_service_tiers
List all SickSlip service tiers with what each one is for, what documents are included, the price, and what kind of customer it fits. Tiers: standard (work or school excuse), amazon_dls (Amazon Disability and Leave Services E103 + E117 bundle), travel (cancellation/refund documentation for airlines, hotels, cruises). Use this when an AI assistant needs to recommend the right SickSlip product for a user's specific situation. No arguments required.
Input Schema
{
"type": "object",
"properties": {},
"required": []
}🟢lookup_physician_npi(npi)
Given a 10-digit National Provider Identifier (NPI), check if it matches a SickSlip physician and return their credentials. Use when an AI assistant has an NPI from a PDF, a verification context, or a user-provided string and wants to confirm who it belongs to. Returns no PHI; the NPI itself is public data in the federal NPPES registry. Currently only resolves Dr. Kawalek's NPI; returns a not-found response for any other NPI.
Input Schema
{
"type": "object",
"properties": {
"npi": {
"type": "string",
"description": "The 10-digit National Provider Identifier to look up. Digits only.",
"minLength": 10,
"maxLength": 10,
"pattern": "^[0-9]{10}$"
}
},
"required": [
"npi"
]
}Community
Evidence