Garage MCP
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 MCPAdd my 2013 Peugeot 2008 at 185,146 km."
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 MCP
garage-mcp is a local, single-user Model Context Protocol server for keeping the history
of several personal vehicles. It stores mileage, maintenance and parts, standalone expenses,
local document references, reminders, and cost summaries in SQLite.
The application has no web interface, HTTP business API, authentication, cloud storage, telemetry, LLM call, OBD integration, or notification service. Its only application entry point is MCP over stdio.
Requirements
Node.js 24 LTS
pnpm 10 or newer
a local MCP client that supports stdio
The project pins its package manager and all direct dependency versions. Node 24 is enforced
through engines and .node-version.
Related MCP server: kips
Install and run
git clone https://github.com/fsioni/my-garage-map.git
cd my-garage-map
corepack enable
pnpm install --frozen-lockfile
cp .env.example .env
pnpm db:migrate
pnpm build
pnpm startFor development:
pnpm devThe server reserves stdout for JSON-RPC. Structured operational logs go to stderr only.
The database directory and schema are created at startup, so running db:migrate separately
is explicit but not required.
The package is marked private to prevent accidental publication to npm. This does not affect
cloning, building, or using the open source repository.
Configuration
Variable | Default | Meaning |
|
| SQLite file, or |
|
|
|
| unset | Optional root allowed for document paths |
When GARAGE_DOCUMENT_ROOT is set, attached paths are resolved and rejected if they escape
that root, including .. traversal. Files are not copied and do not need to exist in V1.
MCP client configuration
Build the project, then add an entry like this to a local MCP client's configuration. Replace the path with the absolute checkout path.
{
"mcpServers": {
"garage": {
"command": "node",
"args": ["/absolute/path/to/my-garage-map/dist/main.js"],
"env": {
"GARAGE_DB_PATH": "/absolute/path/to/my-garage-map/data/garage.sqlite",
"GARAGE_DOCUMENT_ROOT": "/absolute/path/to/vehicle-documents"
}
}
}
}Restart the client after changing its MCP configuration. The Node executable selected by the client must be Node 24.
Tools
All list tools have stable sorting and accept limit (default 50, maximum 200) and offset.
Input objects are strict and reject unknown fields.
Area | Tools |
Vehicles |
|
Mileage |
|
Maintenance |
|
Expenses |
|
Reminders |
|
Documents |
|
Summary |
|
Monetary inputs use euro strings such as "12", "12.5", or "12.50". Values such as
"12.345", "-3", and "12,50" are rejected. Values are converted to integer cents without
using binary floating-point arithmetic.
Example requests in natural language:
“Add my 2013 Peugeot 2008 at 185,146 km.”
“Record 186,020 km today for the Peugeot.”
“Add an oil service at 186,020 km: €45 labor and one €62.50 oil kit.”
“Remind me to inspect the brakes at 190,000 km.”
“Attach
/Users/me/Documents/car/oil-invoice.pdfto the last service.”“Show the Peugeot's cost summary.”
Resources
Resources are read-only UTF-8 JSON:
garage://vehiclesgarage://vehicles/{vehicleId}garage://vehicles/{vehicleId}/maintenancegarage://vehicles/{vehicleId}/expensesgarage://vehicles/{vehicleId}/remindersgarage://vehicles/{vehicleId}/summary
Data model and behavior
Vehicleowns mileage, maintenance, expenses, reminders, and documents.Maintenance owns parts. Part and maintenance totals are calculated from integer cents.
Adding maintenance above current mileage atomically adds a mileage record.
Current mileage is the record newest by recorded date and then creation timestamp.
Equal mileage is allowed when its date or source differs. A fully identical record is rejected by a database uniqueness constraint.
A reminder is
duein the 30 days or 1,000 km before either threshold,overdueafter a threshold,upcomingotherwise, andcompletedwhen completed.Completing a recurring reminder preserves it and atomically creates a successor. Its date is advanced from the previous due date by the recurrence in calendar months (end-of-month clamped); mileage is advanced from the previous due mileage.
Maintenance costs never create an expense row. Summaries report maintenance, standalone expenses, their combined total, and category breakdown separately to prevent double counting.
Deleting maintenance or an expense explicitly detaches its document records. It never deletes files or relies on an implicit cascading delete.
See ARCHITECTURE.md and docs/adr for design details.
Migrations and seed
Versioned SQL migrations live in drizzle/.
pnpm db:generate
pnpm db:migrateThe optional seed creates a Peugeot 2008 1.6 e-HDi Allure (2013), an initial 185,146 km, purchase and transport expense placeholders, and a brake reminder:
pnpm seedThe seed refuses to run if the target database already contains a vehicle.
Tests and quality
pnpm test
pnpm test:unit
pnpm test:integration
pnpm test:contract
pnpm test:coverage
pnpm checkThe suite contains 370 tests. Unit and property tests cover domain rules, exact money
handling, date and path validation, recurrence boundaries, configuration, both clocks, document
storage, and the full in-memory repository. Integration tests use real SQLite :memory:
databases and migrations to verify constraints, indexes, foreign keys, stable ordering,
pagination, transactions, rollback, all repositories, summaries, and the stdio process
lifecycle. Contract tests connect an official SDK Client to the server through an in-memory
transport and verify every tool surface, strict schemas, validation boundaries, safe business
errors, resources, optional-field semantics, pagination, recurrence, and document linking.
Coverage gates instrument all application logic (domain, configuration, repositories, filesystem and clock adapters, presenters, and MCP server): lines, statements, and functions must be at least 90%, and branches at least 85%. Declarative database schema and executable entry-point scripts are covered by integration behavior instead of source instrumentation.
pnpm check runs format checking, lint, strict TypeScript, coverage tests, and the production
build. CI runs that command on every push and pull request.
Security and privacy
Garage data may contain sensitive personal information. The database, .env files, generated
build output, coverage output, logs, and common SQLite sidecar files are ignored by Git.
Nevertheless, review every staged change before pushing and use synthetic data in issues and
tests.
This server is intended for a trusted local user. It does not provide authentication or sandbox
the MCP client. Configure GARAGE_DOCUMENT_ROOT, protect the checkout and data directory with
operating-system permissions, and do not expose the stdio process through an untrusted network
bridge.
Report vulnerabilities privately according to SECURITY.md.
Backup
Stop the MCP client first so SQLite has no active writer, then copy the database file:
cp ./data/garage.sqlite ./backups/garage-$(date +%Y-%m-%d).sqliteIf copying while the server is running is unavoidable, use SQLite's online backup command instead of copying only the main file:
sqlite3 ./data/garage.sqlite ".backup './backups/garage.sqlite'"Restore only while the server is stopped, and keep an additional copy of the replaced file.
V1 limits
single local user and one process writing the database;
no vehicle deletion tool;
no document copying, file-existence check, or file deletion;
offset pagination rather than cursor pagination;
monetary tool inputs are denominated in euros; stored vehicle currency defaults to EUR;
no automatic notifications or background scheduler.
Contributing
Contributions are welcome. Read CONTRIBUTING.md, the Code of Conduct, and SUPPORT.md before opening an issue or pull request. User-visible changes should be recorded in CHANGELOG.md.
License
Garage MCP is available under the MIT License.
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
- Flicense-qualityDmaintenanceEnables users to track personal expenses through natural language interactions with comprehensive category support and financial summaries. Provides both local and remote MCP server options with SQLite storage for fast expense management operations.Last updated
- Alicense-qualityDmaintenancePersonal data management MCP server that stores and queries notes, tasks, conversations, and auth in SQLite, enabling LLMs to interact with the database through natural language.Last updated145ISC
- FlicenseAqualityCmaintenanceEnables task management (create, list, update tasks with priority and status) using SQLite storage via MCP tools.Last updated3
- Flicense-qualityBmaintenanceA database-first personal knowledge management system powered by a local MCP server, providing 29 tools to manage and search structured knowledge (meetings, emails, people, accounts, projects, todos, etc.) via a single SQLite file.Last updated
Related MCP Connectors
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Cross-AI personal memory. Save once in ChatGPT, recall in Claude, Mistral, Grok, or any MCP client.
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/fsioni/my-garage-map'
If you have feedback or need assistance with the MCP directory API, please join our Discord server