Views
No views yet
| Label | Description | Training Samples |
|---|---|---|
CORRECT | Tool invoked correctly with proper parameters | 2,847 |
TOOL_BYPASS | Model answered from training data instead of invoking the tool | 1,203 |
FALSE_SUCCESS | Model claimed success but tool was never called | 892 |
HALLUCINATION | Model fabricated tool response data | 756 |
BROKEN_CHAIN | Multi-step workflow failed mid-chain | 441 |
STALE_DATA | Tool called but returned outdated cached results | 312 |
distilbert-base-uncased1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="brijeshvadi/mcp-error-classifier")
4
5result = classifier("Grok responded with project details but never called the Supabase list_projects tool")
6# Output: [{'label': 'TOOL_BYPASS', 'score': 0.94}]1@misc{mcp-error-classifier-2026,
2 author = {Brijesh Vadi},
3 title = {MCP Error Classifier: Detecting Tool-Calling Failures in AI Assistants},
4 year = {2026},
5 publisher = {Hugging Face},
6}