FitTrack MCP Server
Enables AI assistants to answer questions about and log a user's FitTrack fitness data after validating a short-lived personal access token, with tools like recent_workouts and today_nutrition.
README
FitTrack MCP Server
This project contains a Model Context Protocol (MCP) server for FitTrack. The server will let an AI assistant, such as Claude, answer questions about a user's FitTrack data after the user provides a short-lived personal access token generated inside the FitTrack app.
The detailed build plan lives in plan.txt.
Purpose
The MCP server is a separate service from the FitTrack web app. It will:
- receive requests from an MCP-compatible AI assistant;
- validate the user's FitTrack access token on every request;
- resolve that token to exactly one FitTrack user;
- read only that user's data from Supabase;
- expose safe, focused tools for fitness questions and logging.
The FitTrack web app is not called directly by this server. Both the web app and this server read from the same Supabase database.
Current Status
Phases 0 through 2 are complete for the fake-data MCP server.
The server runs over Streamable HTTP, validates a Bearer token from the
Authorization header, exposes two placeholder tools, and has been successfully
called from Claude through the public MCP connector.
The next major step is Phase 3: replace the hardcoded token fingerprint and fake responses with Supabase-backed token lookup and real FitTrack data.
Planned Phases
| Phase | Goal | Status |
|---|---|---|
| 0 | Local Streamable HTTP MCP server with fake responses and token checking | Complete |
| 1 | Public HTTPS deployment with fake responses | Complete |
| 2 | Online testing with Claude using the public MCP connector | Complete |
| 3 | Supabase-backed token lookup and real FitTrack data | Not started |
| 4 | Safety review for expiry, revocation, isolation, and rate limits | Not started |
| 5 | Everyday Claude usage | Not started |
Phase 0 Scope
Phase 0 creates the smallest useful server:
- Python project setup;
- local Streamable HTTP MCP server entry point;
- one shared token-checking checkpoint;
- one known hardcoded token fingerprint;
- fake tools such as recent workouts or today's nutrition;
- clear rejection when the token is missing or invalid.
Phase 0 should not include Supabase, hosting, real user data, Google login, or production secrets.
Running Locally
Install dependencies:
uv sync --extra dev
This project requires Python 3.10 or newer.
Run tests:
uv run pytest
Start the local MCP server over Streamable HTTP:
uv run fittrack-mcp
Keep that command running while an MCP client connects.
The local MCP endpoint is:
http://127.0.0.1:8000/mcp
For clients that specifically need stdio instead of HTTP, use:
uv run fittrack-mcp-stdio
The Phase 0 MCP tools are:
recent_workoutstoday_nutrition
The token is not a tool argument. Every MCP request must include this HTTP header:
Authorization: Bearer <token>
Wrong or missing authorization headers return:
{
"error": "authentication failed"
}
Phase 1 Deployment
Phase 1 deploys the same fake-data MCP server to a public HTTPS URL.
Deploy with Vercel:
vercel
After deployment, the MCP endpoint should be:
https://<your-vercel-project>.vercel.app/mcp
Use the local Phase 0 development token as an Authorization: Bearer ...
header while testing Phase 1. Keep that token outside Git.
The deployment entrypoint is app.py, which exposes the MCP server as an ASGI app for Vercel.
Phase 2 Claude Test
Claude has successfully connected to the public MCP server and used the
recent_workouts tool from a plain-language request:
get my recent workout
The response returned the expected Phase 0 placeholder workouts:
- 2026-06-24 strength workout;
- 2026-06-22 easy run;
- 2026-06-20 mobility session.
This confirms the connector can load the server, discover the tools, choose a tool, send the Bearer token, and receive a tool response. The data is still demo data until Phase 3 connects Supabase.
Phase 3 Next Step
Phase 3 should replace the local hardcoded token fingerprint with a Supabase lookup:
- read
Authorization: Bearer <token>from each request; - hash the token with SHA-256;
- look up the fingerprint in the FitTrack token table;
- reject missing, wrong, expired, or revoked tokens;
- use the resolved user ID to scope every FitTrack data query;
- replace placeholder tool responses with real Supabase data.
Security Principles
- The token is the identity.
- The assistant never gets to claim which user it is acting for.
- Every request is authenticated independently.
- Token checking happens in one shared place.
- Real tokens should never be stored directly, only their one-way fingerprints.
- Once Supabase is connected, every data query must be scoped to the user resolved from the token.
Notes
The intended implementation language is Python, using the standard MCP toolkit. Hosting is expected to start with Vercel, with Railway or Render as fallback options if the server shape fits those platforms better.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.