Provides tools to access and manage user context stored in Supabase, including capabilities to retrieve user profiles, intake forms, follow-up data, and manage weekly plans.
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., "@PTO MCP Servershow me my latest weekly plan"
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.
PTO MCP Server
Minimal MCP server for PTOAi to expose user context to Agent Builder via Supabase.
Requirements
Node 18+
Supabase URL + Service Role Key
Setup
npm installCreate an env file (or export vars):
export SUPABASE_URL=...
export SUPABASE_SERVICE_ROLE_KEY=...
export MCP_TRANSPORT=http
export PORT=8787
export MCP_ALLOWED_ORIGINS=https://platform.openai.com,https://chatgpt.com
export MCP_HTTP_STATELESS=true
export MCP_OAUTH_COOKIE_SECRET=...
export MCP_OAUTH_REDIRECT_ORIGINS=https://chatgpt.com,https://chat.openai.com
export MCP_PUBLIC_URL=https://mcp-0brh.onrender.com
export SUPABASE_ANON_KEY=...Run:
npm run devHTTP mode (recommended for Agent Builder)
The server runs on:
http://localhost:8787/mcpUse this URL when connecting your Agent Builder MCP tool.
MCP_HTTP_STATELESS defaults to true, which is generally required for Agent Builder.
Set it to false if you have a client that supports MCP session IDs.
OAuth (recommended for production)
The server exposes OAuth endpoints:
/.well-known/oauth-authorization-server/oauth/authorize/oauth/token/oauth/register
Set MCP_OAUTH_COOKIE_SECRET and SUPABASE_ANON_KEY.
By default the OAuth login page uses Supabase email/password.
If you want to use your own login page, set MCP_OAUTH_LOGIN_URL and it will redirect there.
Supabase refresh-token storage (required for long-lived OAuth)
Create a table to store refresh tokens so MCP can auto-refresh access tokens:
create table if not exists public.mcp_oauth_sessions (
user_id uuid primary key references auth.users (id) on delete cascade,
refresh_token text not null,
updated_at timestamptz not null default now()
);Health check:
http://localhost:8787/healthStdio mode (local testing)
MCP_TRANSPORT=stdio npm run devTools
get_profileget_start_intake_latestget_followup_latestget_weekly_planssave_weekly_plan
All tools require access_token from a signed-in Supabase session.
You can also pass a bearer token via the Authorization header.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.