VISA Dispute Advisor
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., "@VISA Dispute AdvisorSearch VISA guidelines for 'item not received' claim with tracking proof"
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.
VISA Dispute Advisor
A merchant dispute advisory system powered by the VISA Dispute Management Guidelines.
Given a dispute case, the system retrieves the applicable VISA conditions, reasons over the merchant's response options and past dispute history, and returns a structured recommendation.
Deployed as a Model Context Protocol (MCP) server — any MCP-compatible client (GitHub Copilot, Claude Desktop, etc.) connects and drives the reasoning loop using the two provided tools.
Architecture
MCP Client (GitHub Copilot / Claude Desktop / …)
│ calls tools over MCP stdio transport
▼
FastMCP Server
├─► ChromaDB (sentence-transformers embeddings — local, no API key)
│ semantic search over VISA Dispute Management Guidelines PDF chunks
└─► SQLite (SQLAlchemy)
merchant dispute history warehouseNo LLM runs server-side. The server is a pure retrieval layer.
Related MCP server: Commerce Ops MCP
Tools
Tool | Purpose |
| Semantic search over VISA Guidelines — start here |
| Merchant dispute history lookup by merchant ID |
Prerequisites
uv ≥ 0.5
Python ≥ 3.11
data/merchants-dispute-management-guidelines.pdf— your copy of the VISA Dispute Management Guidelines PDF
Setup
# 1. Clone
git clone https://github.com/alejamorenovallejo/visa-dispute-advisor.git
cd visa-dispute-advisor
# 2. Install dependencies
uv sync
# 3. Configure paths (defaults work out-of-the-box)
cp .env.example .env
# 4. Place VISA PDF in the data/ folder
# Download from: https://myanmar.visa.com/content/dam/VCOM/global/support-legal/documents/merchants-dispute-management-guidelines.pdf
# Save it as: data/merchants-dispute-management-guidelines.pdf
# 5. Ingest VISA rules into vector store
uv run python -m visa_dispute_advisor.ingest
# 6. Seed demo merchant dispute history
uv run python scripts/seed_merchants.pyRunning the server
# stdio transport — for MCP clients
uv run visa-advisor
# HTTP transport with browser inspector — for development
uv run fastmcp dev src/visa_dispute_advisor/server.pyConnecting a client
GitHub Copilot (VS Code)
Create .vscode/mcp.json:
{
"servers": {
"visa-dispute-advisor": {
"type": "stdio",
"command": "uv",
"args": ["run", "visa-advisor"],
"cwd": "${workspaceFolder}"
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"visa-dispute-advisor": {
"command": "uv",
"args": ["run", "visa-advisor"],
"cwd": "/absolute/path/to/visa-dispute-advisor"
}
}
}Typical advisory session
Dispute case:
Merchant ID: MER-001 (Tech Store Guatemala)
Cardholder claim: Item not received. Ordered a laptop online on
2026-03-01, expected delivery 2026-03-10. Tracking shows "delivered"
but customer denies receiving it. Amount: $450.00.
Merchant response: Has carrier tracking proof showing delivery to
the billing address.
Agent calls:
1. search_visa_rules("customer claims item not received, merchant has tracking proof")
2. query_warehouse("MER-001")
Recommendation: REJECT DISPUTE (favor merchant)
Applicable rule: Condition 13.1 — Merchandise/Services Not Received.
Merchant can provide tracking documentation proving delivery to the
agreed address. Under Condition 13.1, this constitutes valid compelling
evidence to dispute the chargeback.
Merchant risk profile: LOW RISK — 2 of 3 prior disputes resolved in
merchant's favor. No pattern of fraudulent behavior detected.
Next steps:
1. Request signed proof of delivery from carrier.
2. Submit tracking number and delivery confirmation to acquirer.
3. If cardholder insists, escalate to Visa arbitration.Development
uv run ruff check --fix src/
uv run ruff format src/
uv run pytestSee AGENTS.md for full contributor and agent guidance.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityBmaintenanceEnables AI agents to investigate and resolve e-commerce order exceptions like damages, lost shipments, refunds, and replacements through a unified interface with built-in guardrails.
- Flicense-qualityBmaintenanceEnables commerce operations teams to investigate missing-delivery complaints and resolve them through natural language, with policy-enforced refunds and escalations.
- Flicense-qualityBmaintenanceEnables AI assistants to detect and investigate e-commerce payment-fulfillment discrepancies, create durable escalation tickets, and track resolution status.
- Flicense-qualityBmaintenanceEnables operations teams to diagnose and resolve stuck orders via natural-language queries. It provides evidence-based resolution proposals, but any state-changing action requires explicit human confirmation.
Related MCP Connectors
Fail-closed refund, cancellation, return, and trial checks for 100 US subscription vendors.
Verify business legitimacy by domain or name in <2s. Trust score, verdict, evidence. x402-payable.
Pre-action allow/deny for AI agents. 24 statutes, 13 jurisdictions: EU AI Act, GDPR, DPDP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/alejamorenovallejo/visa-dispute-advisor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server