Ticket Fighter
Allows connecting Gmail for monitoring decision emails and tracking dispute outcomes, enabling automated status updates from parking ticket agencies.
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., "@Ticket Fightercheck for new parking tickets on my plates"
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.
Ticket Fighter
An MCP server that automates parking ticket detection, evidence gathering, and dispute preparation across multiple US cities. Runs fully in the cloud via the @ticket_fighter MMP bot or locally as a stdio MCP server.
MMP Bot
DM @ticket_fighter on MMP to use Ticket Fighter through any AI assistant. The bot runs on Railway and handles everything headlessly.
Landing page: tf.mmp.chat
Commands:
add ABC1234 NY nyc— Monitor a platecheck— Scan for tickets nowanalyze 1234567 nyc— Evidence & defense strategydispute 1234567 nyc— Generate disputesubmit 1234567 nyc— Submit to city portalstatus 1234567 nyc— Check outcomegmail— Connect Gmail for decision trackinghelp— Show all commands
Bot source: /ticket-fighter-bot
Related MCP server: Registry Review MCP Server
Supported Cities (24)
Open Data API (no browser needed)
City | API | Fallback |
NYC | NYC Open Data (SODA | CityPay scraper if data >30 days stale |
San Francisco | SF Open Data (SODA | eTIMS scraper if data >30 days stale |
Chicago | CHIPAY JSON API (ticket # lookups) | Browser scraper for plate searches (hCaptcha) |
No CAPTCHA (fully automatable)
City | Platform | Dispute Method |
Boston | RMC Pay | Online/mail/video appeal |
Miami | RMC Pay | Via Miami Parking Authority |
Charlotte | RMC Pay | 3-tier appeal |
Denver | RMC Pay | Via portal |
Dallas | RMC Pay | Via portal |
Raleigh | RMC Pay | Via portal |
Orlando | CPC | Notarized appeal form (PDF) |
Baltimore | Custom | Phone/in-person (410-396-3000) |
Atlanta | DS Payments | Duncan appeal portal (14-day deadline) |
San Diego | DS Payments | Duncan appeal portal |
Detroit | DS Payments | Duncan appeal portal |
Pittsburgh | DS Payments | Duncan appeal portal |
Milwaukee | DS Payments | Duncan appeal portal |
Sacramento | DS Payments | Duncan appeal portal |
New Orleans | DS Payments | Duncan appeal portal |
CAPTCHA (auto-solved via 2Captcha, or user solves in browser)
City | Platform | CAPTCHA Type | Dispute Method |
NYC | CityPay | reCAPTCHA v2 | HBW online hearing |
Chicago | CHIPAY | hCaptcha | eHearing |
Washington DC | eTIMS | Custom image | DC DMV online |
San Francisco | eTIMS | Custom image | SFMTA citations |
Detroit (eTIMS) | eTIMS | Custom image | Via portal |
Cleveland | eTIMS | Custom image | Via portal |
Columbus | eTIMS | Custom image | Via portal |
Oakland | eTIMS | Custom image | Via portal |
Santa Monica | eTIMS | Custom image | Via portal |
Platform adapters (add new cities with one line of config)
RMC Pay — 50+ US cities use this platform. Add any with:
createRmcPayAdapter({ cityId, displayName, subdomain })DS Payments — 25+ cities. Add with:
createDsPaymentsAdapter({ cityId, displayName, citySlug, appealSlug })eTIMS — 10+ major cities. Add with:
createEtimsAdapter({ cityId, displayName, cityPath, subdomain })
Cloud Operation
Ticket Fighter runs fully headless in the cloud with these env vars:
Var | Purpose |
| 2Captcha API key — auto-solves reCAPTCHA v2 (NYC) and hCaptcha (Chicago) |
| Google OAuth client ID — enables Gmail API for decision tracking |
| Google OAuth client secret |
| OAuth callback URL (e.g. |
Without these, the tools fall back to headed browser mode (local use only).
ChatGPT App
Ticket Fighter includes a widget UI for ChatGPT. All tools render inline results — a dashboard for check_tickets, detail views for analyze_ticket, dispute previews, and status badges.
To rebuild the widget: cd app && npm install && npm run build
Setup
npm install
npx playwright install chromium
cd app && npm install && npm run build && cd ..
npm run buildClaude Code (.mcp.json)
{
"mcpServers": {
"ticket-fighter": {
"command": "node",
"args": ["/path/to/ticket-fighter/dist/index.js"]
}
}
}Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"ticket-fighter": {
"command": "node",
"args": ["/path/to/ticket-fighter/dist/index.js"]
}
}
}Tools
manage_plates
Add, remove, or list saved license plates.
check_tickets
Scan city portals for open violations on your saved plates.
analyze_ticket
Gather evidence for a specific ticket: details, Street View imagery, registration cross-references, applicable traffic rules, common defenses, and past dispute history.
generate_dispute
Format dispute arguments into city-specific structure. Returns a preview — does not submit.
submit_dispute
Submit a previewed dispute. Requires explicit confirmation.
check_status
Check dispute status via city portal or Gmail search for decision emails.
setup_gmail
Connect Gmail for decision email monitoring. With Google OAuth configured, returns an authorization URL. Without it, opens a browser for manual login.
Scripts (NYC submission helpers)
NYC's submit_dispute MCP tool intentionally throws — DOF submissions require the user in the loop (evidence upload, personal info, penalty-of-perjury attestation). Two scripts in scripts/ handle the flow:
fetch-summons-citypay.mjs <violation>...
Launches a headed Chromium, walks through CityPay's "Search by Parking Violation" tab for each violation, saves the officer's summons image and CityPay results page to ~/.ticket-fighter/decisions/. User solves any reCAPTCHA; script auto-detects solve (token present OR form navigation) and continues.
node scripts/fetch-summons-citypay.mjs 9270466449 4051701815 8998315609submit-dispute-nyc.mjs <violation>
Polling-fill for NYC DOF's "Dispute by Web" form. Opens https://www.nyc.gov/site/finance/vehicles/dispute-web.page; user clicks "Dispute by Web" (opens a new tab); script watches all tabs and iframes in the context; every 3 seconds it fills any form field it recognizes (name, address, city, zip, email, plate, violation #, argument textarea) and attaches evidence files to any input[type=file]. Stops at the final Review/Submit page — user reviews and clicks submit manually.
Configure at the top of the script:
RESPONDENT— name, address, emailEVIDENCE— map of violation # → array of file pathsDispute argument text is loaded from
~/.ticket-fighter/decisions/dispute-<violation>.txt
node scripts/submit-dispute-nyc.mjs 9270466449DOF-accepted file types: PDF, JPG/JPEG, TIFF, BMP, GIF. Not PNG — convert with sips -s format jpeg in.png --out out.jpg before listing in EVIDENCE.
Adding a New City
If the city uses RMC Pay (check if {cityname}.rmcpay.com loads their portal):
Add one line to
src/adapters/rmcpay-cities.ts:export const myAdapter = createRmcPayAdapter({ cityId: "mycity", displayName: "My City", subdomain: "mycitysubdomain" });Register in
src/index.tsBuild and test
For other platforms:
Create
src/adapters/yourcity.tsimplementing theCityAdapterinterfaceCreate
src/codes/yourcity-codes.jsonwith violation codes and defensesRegister the adapter in
src/index.tsBuild and test
License
MIT
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/timncox/ticket-fighter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server