Garage-on-the-Go MCP Server
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., "@Garage-on-the-Go MCP ServerMy car won't start, find a mechanic in Guwahati."
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.
Garage-on-the-Go AI Agent ๐ ๏ธ
Kaggle AI Agents Capstone Project: Intensive Vibe Coding
Project Scope
Garage-on-the-Go AI Agent is a Kaggle capstone prototype designed to demonstrate multi-agent vehicle diagnostics, service estimation, and mobile mechanic matching.
Capstone Prototype: Built for Kaggle AI Agents Capstone evaluation and portfolio demonstration.
Simulated Operations: Uses mock service catalog data and simulated mechanic profiles for Guwahati-style areas.
No Real Dispatching: The generated booking receipt is a demo output and does not trigger real mechanic assignment, payment, or physical dispatch.
Related MCP server: Rover MCP Server
๐ Problem Statement
Stranded motorists facing sudden vehicle failures lack an immediate, reliable way to:
Safely diagnose whether their vehicle is safe to drive or requires immediate towing.
Estimate realistic, local maintenance costs without visiting physical workshops.
Quickly find and book available mock mechanics operating in their specific neighborhood.
๐ก Solution
A localized, secure mobile mechanic coordinator driven by an ADK-inspired multi-agent orchestration sequential pipeline:
Triage Agent: Conducts safety and urgency classification.
Estimate Agent: Matches the query to a structured catalog, determining base service details and pricing ranges.
Booking Agent: Assigns mock mechanic specialists located in Guwahati areas and compiles a finalized booking summary.
๐ ๏ธ Architecture & Multi-Agent Flow
The workflow is coordinated sequentially by a Root Agent orchestrator:
[User Input]
โ
โผ
[Security Shield] โโโบ 1. Input Guard (Rejects injections / size limits)
โ 2. PII Redactor (Filters email/phone for privacy)
โผ
[Root Agent (Orchestrator)]
โ
โโโบ [Triage Agent] โโโบ Diagnoses causes, Urgency levels, Safety directions
โ
โโโบ [Estimate Agent] โโโบ Queries Service Catalog Tool, determines Cost range
โ
โโโบ [Booking Agent] โโโบ Invokes Mechanic Match Tool, compiles Receipt
โ
โผ
[Final Output] โโโบ Booking Confirmation Receipt JSON & Dashboard Cards๐ Kaggle Course Concepts Demonstrated
Multi-agent orchestration: Uses a sequential coordination pipeline (Triage -> Estimate -> Booking) directed by a central Root Orchestrator.
Gemini API via google-genai with fallback mode: Migrated to the modern
google-genaiSDK targeting thegemini-2.5-flashmodel. Includes a full deterministic rule-based fallback if the API key is not present or calls fail.Real ADK integration layer under adk_agent/: Exposes the vehicle diagnostics agent tools using the official Google Agent Development Kit framework configuration.
Real MCP server under mcp_server/real_mcp_server.py: Exposes tools (
search_services,find_mechanic, andgenerate_booking) to external clients using the officialFastMCPframework on standard stdio transport.Security guardrails: Includes prompt injection protection, input length restrictions, and regex-based redaction of phone/email PII before processing.
Streamlit deployability: Provides an interactive browser-based web demo interface ready for cloud environment testing. Features visual status chips, summary cards, confidence meters, and a structured Agent Execution Trace / Reasoning Flow panel.
๐ Setup & Execution
Prerequisites
Python 3.8+ installed on your system.
Installation
Clone or navigate to the project directory:
cd garage-on-the-go-agentCreate and activate a virtual environment:
python -m venv venv # On Windows (PowerShell): .\venv\Scripts\Activate.ps1 # On macOS/Linux: source venv/bin/activateInstall the dependencies:
pip install -r requirements.txt
Configuration
(Optional) Create a
.envfile in the root directory and add your Google Gemini API key:GEMINI_API_KEY=your_actual_api_key_hereNote: If no API key is specified, the application automatically runs in rule-based offline fallback mode using the Maruti/Pulsar heuristics.
โ ๏ธ WARNING: Never commit your
.envfile or expose raw API keys to GitHub.
๐น๏ธ How to Run
1. Run the Streamlit Interface
To view the Streamlit web demo:
streamlit run app.pyStreamlit App Pages
The Streamlit dashboard has been upgraded with a sidebar navigation menu to showcase a complete portfolio-ready workflow. The app includes the following pages:
Dashboard: Displays project overview, system statuses (Gemini API or fallback state), mock database summary counts, and system architecture.
Diagnose: Runs the main diagnostic workflow with safety/PII pre-validation, triage diagnostics, catalog matching, dispatcher tool assignment, booking receipt compilation, and the visual step-by-step Agent reasoning trace.
Mechanics: Displays simulated mock mechanic profiles (names, specialties, ratings, and operating neighborhoods) from local JSON data.
Bookings: Shows the latest booking receipt compiled in the current Streamlit session (requires performing a diagnostic first).
History: Shows diagnostic history compiled during the current active session only (uses temporary
st.session_statewith no persistent database storage).Settings: Summarizes project configuration status, local env setups, mock parameters, and safety shields.
2. Run the CLI Terminal Demo
To run the interactive command-line utility:
python main.py3. Run Automated Self-Tests
To run the programmatic validation suite verifying security guardrails, PII filters, and pipeline routing:
python main.py --test4. Run the Google ADK Wrapper
To verify tool registration and inspect the Google Agent Development Kit setup:
python adk_agent/agent.py5. Run the Real MCP Server
To execute the tool server via standard stdio transport:
python mcp_server/real_mcp_server.pyOr run the server in development mode using the FastMCP command-line tool:
mcp dev mcp_server/real_mcp_server.py๐งช Demo Scenario
Try entering the following description in the CLI or Streamlit text input:
"My car's engine is making a loud knocking sound, and the dashboard temperature gauge is in the red. I see some coolant leaking onto the driveway. Call me at 98765-43210 or email user@test.com to confirm."
Expected Results:
Security Guard: Redacts
98765-43210to[PHONE REDACTED]anduser@test.comto[EMAIL REDACTED].Triage: Diagnoses a cooling system/radiator issue, marks urgency as Critical, and issues a safety recommendation to stop driving immediately.
Estimate: Selects Coolant Flush & Top Up or Engine Diagnostics from the catalog, calculating a total pricing breakdown.
Booking: Matches an available mechanic in your location area (e.g. Rajen Kalita for Beltola) and prints a receipt with booking ID.
โ ๏ธ Limitations & Future Scope
Current Limitations: This is a prototype system that operates entirely on mock data, with no real GPS positioning, no payment gateway integration, and no real-world mechanic booking or dispatching.
Future Scope: Integration with real mechanic dashboards via Websockets, mapping visual routing APIs, and deploying native MCP server adapters to bind directly into developer IDE hosts.
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI agents to search, browse, and book hotels from a database of 2 million properties worldwide. Provides comprehensive hotel search capabilities with location lookup, filtering by amenities, detailed property information, and integrated booking functionality.Last updated6461ISC
- AlicenseAqualityDmaintenanceEnables AI assistants to search for pet sitters, manage bookings, and handle pet profiles through the Rover pet services marketplace. It facilitates direct communication with sitters and service management using Playwright-based browser automation.Last updated13291MIT
- AlicenseBqualityBmaintenanceEnables AI agents to interact with the Shopmonkey REST API to manage shop management data including work orders, customers, vehicles, and inventory. It provides 33 tools across 9 resource groups with built-in support for rate limiting, concurrency control, and multi-location management.Last updated33MIT

@qasperai/mcp-serverofficial
AlicenseAqualityCmaintenanceEnables AI assistants to discover and book local service businesses like barbers, plumbers, and mechanics directly through MCP-compatible tools.Last updated9107MIT
Related MCP Connectors
Agentic scheduling & booking for field service: availability, jobs, customers, crews, fleet.
Find and book verified local home service professionals through AI agents.
Discover and book businesses via AI agents.
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/Pranjalde95/garage-on-the-go-ai-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server