FitTrack MCP
Provides read-only access to fitness tracking data (weight, waist, meals) stored in Supabase, with filtering by date, measurement, and optional sorting.
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., "@FitTrack MCPShow my recent weight entries"
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.
FitTrack MCP
A read-only MCP server built with XMCP, Supabase Auth, and HTTP transport.
Tool
get-fittrack-info returns a fixed payload containing the app name, service
status, and sample tracking categories. It does not require authentication and
does not read or write external data.
get-recent-weight-entries is a protected, read-only tool that selects the
authenticated user's records from public.fittrack_weight using a month, an
exact date, an exact weight in kilograms, or a combination of date and weight.
When both inputs are omitted, it defaults to the current UTC month. It refuses
requests without a verified Supabase OAuth bearer token and relies on Supabase
RLS to enforce auth.uid() = user_id.
Results can be sorted by date or weight, ascending or descending. Without
sorting inputs, the query defaults to created_at descending.
get-recent-waist-entries applies the same protected, read-only filtering and
sorting behavior to public.fittrack_waist. It accepts a month or exact date,
an exact waist measurement in centimeters, and optional sorting by date or
waist. Without sorting inputs, it defaults to created_at descending.
get-recent-meal-entries is a protected, read-only tool for
public.fittrack_meals. It accepts a month or exact date and a
case-insensitive food-description fragment, and returns each meal's calorie,
protein, and carbohydrate values. When both inputs are omitted, it defaults to
the current UTC month with created_at descending.
get-recent-gym-sessions is a protected, read-only tool for
public.fittrack_gym_sessions. It returns up to ten sessions ordered by newest
date and accepts an optional month, exact date, or case-insensitive partial
exercise/session name. Results include duration, detailed workout notes, start
and end times, and creation and update timestamps.
get-recent-extra-activities is a protected, read-only tool for
public.fittrack_extra_activities. It returns up to ten activities ordered by
newest date and accepts an optional month, exact date, or case-insensitive
partial activity name. Results include intensity, duration in minutes, notes,
time, calories, and creation and update timestamps.
The server publishes OAuth Protected Resource Metadata at
/.well-known/oauth-protected-resource. Supabase Auth is the OAuth 2.1
authorization server, while the MCP server remains the resource server.
Related MCP server: MacroMCP
Requirements
Node.js 20 or newer
npm
Local development
npm install
npm run devThe MCP endpoint is available at http://localhost:3001/mcp.
Supabase connectivity safety test
Copy .env.example to .env.local and provide the project URL, an
sb_publishable_... key, and the canonical MCP endpoint URL. Never use a
secret or service-role key.
npm run test:db-readThe test performs an anonymous, read-only request against
public.fittrack_weight without returning row data. It passes only when RLS
hides every row from the anonymous role.
Authentication
Configure Supabase Auth with:
OAuth 2.1 Server enabled
Dynamic OAuth application registration enabled
Site URL
https://fittrack.taimoorahmed.comAuthorization path
/oauth/consent
The web application owns the consent page. The MCP server verifies supplied
access tokens through Supabase Auth before passing them to the read-only
database client. Only OAuth-issued tokens containing a client_id are accepted.
Set the production resource URL to the exact endpoint used by MCP clients:
MCP_RESOURCE_URL=https://fittrackmcp.vercel.app/mcpBuild
npm run build
npm startDeploy to Vercel
Import this Git repository into Vercel or run:
vercel deployAfter deployment, the public endpoint is https://<deployment>.vercel.app/mcp.
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
- Alicense-qualityDmaintenanceA server that connects to the Health Planet API to fetch and provide weight measurement data through any MCP-compatible client, allowing for retrieval and analysis of personal weight records.MIT
- Flicense-qualityCmaintenanceRemote MCP server for natural-language calorie/macro and weight tracking, designed to connect to Claude.ai as a custom connector.
- Flicense-qualityCmaintenanceA personal health and fitness MCP server that provides tools for managing profile data, goals, body measurements, nutrition, workouts, sleep, check-ins, life events, analytics, and coach memories via Supabase Postgres.1
- Flicense-qualityBmaintenanceRead-only MCP server for querying group expense splits and balances from a self-hosted receipt splitting app.
Related MCP Connectors
MCP server for Withings health data — sleep, activity, heart, and body metrics.
MCP server for interacting with the Supabase platform
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
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/taimoorahmed91/fittrack_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server