home-remote-mcps
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., "@home-remote-mcpsGet my step count for today from Garmin"
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.
home-remote-mcps
Personal remote MCP gateway. Exposes Garmin Connect, Home Assistant, and YouTube as Model Context Protocol servers reachable over HTTP, so Claude (or any MCP client) can query and control them from anywhere — no local server, no local credentials.
Authentication for the web UI is delegated to an external SSO (home-auth, OAuth2). MCP clients
authenticate separately with a per-user API key issued from that UI.
Why a sidecar for Garmin
Garmin Connect has no official public API and no actively maintained Node client. The
garmin-connector service is a small internal-only Python sidecar wrapping the
garminconnect library, which handles Garmin's login
flow (including MFA) and token refresh. The NestJS backend talks to it over the Docker network
with a shared secret; it is never exposed publicly. Home Assistant and YouTube have normal REST
APIs, so the backend talks to them directly.
Related MCP server: FitnessMCP
Project layout
backend/ NestJS API — REST (auth, credentials, API keys) + MCP servers, DDD-ish layers
frontend/ React SPA — login, manage stored credentials, issue MCP API keys
garmin-connector/ FastAPI sidecar — Garmin Connect login/session via `garminconnect`
deploy/ docker-compose + Caddy config for productionSee CLAUDE.md for the detailed architecture (layering, MCP request path,
per-integration connector design, auth model) and ai-docs/ for deeper reference
material. Human-oriented guides live in docs/.
Requirements
Node.js >= 20 (see
.nvmrc)Python >= 3.11 for
garmin-connectorA running
home-authinstance (OAuth2 client registered for this app) for browser loginDocker, for production deploys (
deploy/docker-compose.yml)
Local development
npm install # installs backend + frontend workspaces
cp backend/.env.example backend/.env # fill in home-auth + secrets, see comments in the file
cp garmin-connector/.env.example garmin-connector/.env
npm run dev:backend # http://localhost:3000 (API under /api, Swagger under /api/docs)
npm run dev:frontend # http://localhost:5173, proxies API calls to the backend
cd garmin-connector && pip install -r requirements.txt && uvicorn app.main:app --reload --port 8000GARMIN_CONNECTOR_SECRET must match between backend/.env and garmin-connector/.env.
Build, test, lint
npm run build # frontend, then backend (bundles frontend/dist into the backend build)
npm run test # backend (jest) then frontend (vitest)
npm run lint # eslint on both workspaces
npm run format # prettier --write, repo-wideHusky hooks (pre-commit, pre-push, commit-msg) run lint-staged and commitlint
(Conventional Commits) automatically.
Deployment
Dockerfile at the repo root multi-stage builds frontend → backend → a runtime image that bundles
Litestream for continuous SQLite replication to a MinIO (S3-compatible)
bucket, restoring on boot if MINIO_BUCKET is set. garmin-connector/Dockerfile builds the
sidecar image separately. deploy/docker-compose.yml runs both as sibling services on an internal
Docker network — the sidecar has no published port, reachable only from the backend at
http://garmin-connector:8000. deploy/Caddyfile is the reverse-proxy config for the public
service.
Required environment variables are documented inline in backend/.env.example and
garmin-connector/.env.example.
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
- FlicenseNot gradedqualityDmaintenanceA unified data gateway MCP server that enables Claude to interact with multiple external REST and GraphQL APIs through OAuth 2.0 authentication.
- AlicenseNot gradedqualityCmaintenanceA unified MCP server that connects AI assistants to multiple fitness services (Hevy, Strava, Cronometer, Intervals.icu) through a single secure endpoint, enabling workout, nutrition, and activity data access.MIT
- FlicenseNot gradedqualityDmaintenanceRemote MCP server acting as a personal assistant with secure OAuth authentication, integrating Google Calendar, TickTick tasks, meal logging, workout tracking, and water intake logging.
- AlicenseNot gradedqualityAmaintenanceA multi-user OAuth 2.1-protected gateway that enables Claude to access Garmin Connect tools through secure per-user sessions.4MIT
Related MCP Connectors
An authenticated remote MCP server for user-owned devices and one-shot capability invocation.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Self-hosted federated MCP gateway: one OAuth 2.1 MCP server in front of N apps, user-level scopes.
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/SlobodaFR/home-remote-mcps'
If you have feedback or need assistance with the MCP directory API, please join our Discord server