TimeLib MCP
Allows managing a Medusa v2 store, including products, variants, inventory, collections, categories, orders, customers, and more via the Admin API.
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., "@TimeLib MCPAdd a new product 'Slim Wallet' to the Accessories collection, price $45, stock 50."
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.
TimeLib MCP — AI agent for your Medusa store
An MCP server that lets an AI agent (Claude Desktop, Claude Code, or any MCP client) add and manage products — plus inventory, collections/categories, orders and customers — in your TimeLib Medusa v2 store via the Admin API.
You just chat, e.g.:
"Add a product called Chrono Field Watch, a draft, with S/M/L bands at $180, 20 in stock each, in the Watches collection."
and the agent creates it.
What the agent can do
Area | Tools |
Orientation |
|
Products |
|
Variants |
|
Inventory |
|
Catalog |
|
Orders / Customers |
|
Anything else |
|
Related MCP server: MCP Shopify Admin Server
Setup (one time)
1. Install
cd timelib-mcp
npm install2. Configure credentials
cp .env.example .envOpen .env. MEDUSA_BACKEND_URL is already filled in. You need admin
credentials. Two options:
Option A — Secret API key (recommended: non-expiring, revocable, no password stored).
Temporarily put your Medusa admin email + password in .env, then:
npm run create-keyCopy the printed token into MEDUSA_ADMIN_API_KEY in .env, then delete the
email/password lines.
Option B — Email + password. Just set MEDUSA_ADMIN_EMAIL and
MEDUSA_ADMIN_PASSWORD in .env and leave MEDUSA_ADMIN_API_KEY empty. The
server logs in and refreshes the token automatically.
3. Test the connection
npm run smokeYou should see ✅ Auth OK and a few product titles.
Connect it to Claude
Claude Code (CLI)
claude mcp add timelib -- node "C:\Users\dashi\Desktop\Projects\TimeLib\timelib-mcp\src\index.mjs"(Credentials are read from timelib-mcp/.env, so you don't need to pass them on
the command line. To pass them explicitly instead, add -e MEDUSA_BACKEND_URL=... -e MEDUSA_ADMIN_API_KEY=... before the --.)
Verify with claude mcp list, then in a session ask: "What tools does timelib expose?"
Claude Desktop
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"timelib": {
"command": "node",
"args": ["C:\\Users\\dashi\\Desktop\\Projects\\TimeLib\\timelib-mcp\\src\\index.mjs"]
}
}
}Restart Claude Desktop. The 🔌 icon should show the timelib tools.
Hosting the server (remote / always-on)
The server has two entrypoints that share the same tools:
Entrypoint | Command | Use |
Local (stdio) |
| Claude launches it on your machine |
Hosted (HTTP) |
| Runs as a web service; clients connect over HTTPS |
The hosted server exposes MCP at POST /mcp and is protected by a static bearer
token (MCP_AUTH_TOKEN). It refuses to start without one.
Deploy to Railway (new service in the TimeLib project)
Push
timelib-mcp/to a Git repo (GitHub).In your existing TimeLib Railway project → New → GitHub Repo → pick this repo (set the root directory to
timelib-mcpif it lives in a monorepo).Railway reads
railway.jsonand runsnode src/http-server.mjs.Add these Variables in the service:
MEDUSA_BACKEND_URL=https://timelib-production.up.railway.appMEDUSA_ADMIN_API_KEYorMEDUSA_ADMIN_EMAIL+MEDUSA_ADMIN_PASSWORDMCP_AUTH_TOKEN= a long random secret (see below)(
PORTis injected by Railway automatically.)
Under Settings → Networking, generate a public domain. You'll get a URL like
https://timelib-mcp-production.up.railway.app. Your MCP endpoint is that URL +/mcp.
Generate a token:
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"Sanity-check the deploy:
curl https://YOUR-MCP-DOMAIN.up.railway.app/ # -> {"name":"timelib-mcp","status":"ok",...}Connect clients to the hosted server
Claude Code (CLI) — native HTTP transport with a header:
claude mcp add --transport http timelib-remote https://YOUR-MCP-DOMAIN.up.railway.app/mcp \
--header "Authorization: Bearer YOUR_MCP_AUTH_TOKEN"Claude Desktop — use the mcp-remote bridge (no native header field in the UI):
{
"mcpServers": {
"timelib-remote": {
"command": "npx",
"args": [
"mcp-remote",
"https://YOUR-MCP-DOMAIN.up.railway.app/mcp",
"--header", "Authorization: Bearer YOUR_MCP_AUTH_TOKEN"
]
}
}
}Claude.ai web / mobile — uses OAuth (see next section). No token to paste; you approve access with your owner password in the browser.
OAuth for claude.ai web / mobile
claude.ai custom connectors authenticate via OAuth, not a static token. The hosted server implements a full OAuth 2.1 flow (metadata discovery, dynamic client registration, authorize + token endpoints, PKCE, refresh tokens). It's stateless — client registrations and tokens are signed JWTs, so it survives Railway redeploys with no database. Access is gated by a single owner password.
Enable it
Add two more variables to the Railway service and redeploy:
OWNER_PASSWORD = <a password you'll type to approve access>
OAUTH_JWT_SECRET = <64+ random hex chars: node -e "console.log(require('crypto').randomBytes(48).toString('hex'))">PUBLIC_URL is auto-detected from Railway's RAILWAY_PUBLIC_DOMAIN. The static
MCP_AUTH_TOKEN keeps working for Claude Code/Desktop at the same time.
Connect claude.ai
claude.ai → Settings → Connectors → Add custom connector.
URL:
https://YOUR-MCP-DOMAIN.up.railway.app/mcpClaude discovers the OAuth endpoints and opens a login page → enter your
OWNER_PASSWORD→ Authorize.The
timelibtools appear in claude.ai (web and mobile).
Health check shows which modes are active:
curl https://YOUR-MCP-DOMAIN.up.railway.app/ # -> "auth":{"static_token":true,"oauth":true}Notes & safety
Prices are in major currency units in Medusa v2 (e.g.
25= $25.00, not cents).New products default to
draft. Ask the agent to setstatus: "published"(or useupdate_product) to make them live.Destructive actions (
delete_product, deletes viamedusa_admin_request) are permanent — the agent is instructed to confirm with you first, but review before approving.The secret API key has full admin access. Keep
.envout of version control (already in.gitignore) and revoke the key in the Medusa admin if it leaks.Product images are passed as public URLs. To upload local files first, use the Medusa admin UI or extend the server with the
/admin/uploadsendpoint viamedusa_admin_request.Hosted server = full admin access behind one token. Anyone with the
MCP_AUTH_TOKENand the URL can manage your store. Use a long random token, store it only in Railway variables + your client config, and rotate it (change the variable, redeploy) if it leaks.OAuth secrets:
OWNER_PASSWORDis your login to approve claude.ai access — make it strong. ChangingOAUTH_JWT_SECRET(or a redeploy that loses it) invalidates all issued tokens and registered connectors, so clients must reconnect. Keep it stable in Railway variables.
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.
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/oumaru894/-timelib-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server