bewell-catalyst-mcp
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., "@bewell-catalyst-mcplist my organizations"
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.
bewell-catalyst-mcp
An MCP (Model Context Protocol) server for managing an organization's activity library on the BeWell Catalyst platform. From any MCP-capable Claude session you can create, update, list, fetch and delete library activities of every type, including uploading their media (images, video, audio).
The server contains no business logic: every tool call is a thin RPC to a Catalyst cloud function, where authentication, authorization and domain rules live. The one thing it does locally is read media files from disk and upload them through a signed URL.
What publishing means: a published activity lands in the organization's library and appears immediately in the teachers' Manage Activities screen. Participants see it only once a teacher places it in a course. Publishing stocks the library; it does not push content to participants.
Install
Requires Node.js 20 or newer.
Add to your .mcp.json (Claude Code) or MCP client configuration:
{
"mcpServers": {
"bewell-catalyst": {
"command": "npx",
"args": ["-y", "bewell-catalyst-mcp"],
"env": {
"BEWELL_CATALYST_API_KEY": "bwc_...",
"BEWELL_CATALYST_FUNCTIONS_BASE_URL": "https://europe-west1-bewellit-prod-eu.cloudfunctions.net"
}
}
}
}Related MCP server: rustici-mcp-server
Environment variables
Variable | Purpose |
| API key ( |
| Cloud Functions origin of the target environment (selects the region/project). |
| Pin this workspace to a single |
Environment | Base URL |
EU |
|
US |
|
API keys and storage are per-environment: a key minted for the EU environment only works against the EU base URL, and media uploaded in one environment cannot be referenced from the other.
Getting an API key
Keys are minted by a platform administrator in the Catalyst admin UI
(there is no self-serve issuance). A key manages one or more
organizations and carries the publishing scope, which covers every tool
in this server. Keys can expire and can be revoked at any time; treat them
as secrets. If you don't know which organizationId values a key manages,
call list_organizations.
Tools (15)
Tool | Purpose |
| Upload a local file, get back the |
| Markdown articles, optional hero image and journal prompts |
| Video activities (uploaded file + duration + thumbnail) |
| Audio activities such as guided meditations |
| Full-screen image activities |
| Config-only cards: |
| Fetch one activity by slug (returns |
| Paginated summaries, optional type filter, no content bodies |
| Delete an MCP-created activity plus (best-effort) its media |
| List the organizations this key manages ( |
Identity and idempotency
Activities are addressed by (organizationId, contentSlug). The slug
namespace is shared across all types: one slug names exactly one
activity per organization, and its type can never change after
creation. Creating with an existing slug (same type, MCP-created) acts as
an update; retries are safe.
Only activities created through this MCP can be updated or deleted.
Activities authored in-app are readable via get_activity /
list_activities but never writable here.
Working with multiple organizations
A single key can manage several organizations. There is still one key and
one config entry — you choose which organization a call targets purely
through the organizationId argument on each tool. Switching organizations
means passing a different organizationId; there is no config edit and no
restart.
Discover what a key manages with
list_organizations(no inputs). It returns{ "organizations": [{ "id": "...", "name": "..." }, ...] }(nameis the display name, ornullif the record is unavailable). Start here whenever you don't already know theorganizationIdto use.Target an organization by passing one of those ids as
organizationIdto any other tool.
The server enforces membership on every call: a key may only act on the
organizations attached to it. A call for an unattached organization is
refused with PERMISSION_DENIED — call list_organizations to see the
valid ids.
Locking a workspace to one organization (recommended)
When a workspace should only ever touch one organization, set
BEWELL_CATALYST_ORG_LOCK to that organization's id. Every org-scoped tool
then refuses any other organizationId client-side, before any network
call, naming both the locked and the attempted organization.
list_organizations remains available (read-only discovery is harmless).
The recommended pattern is one .mcp.json entry per project, each
locked to that project's organization — so a Claude session working in that
project physically cannot drift to another organization even though the key
could reach several:
{
"mcpServers": {
"bewell-catalyst": {
"command": "npx",
"args": ["-y", "bewell-catalyst-mcp"],
"env": {
"BEWELL_CATALYST_API_KEY": "bwc_...",
"BEWELL_CATALYST_FUNCTIONS_BASE_URL": "https://europe-west1-bewellit-prod-eu.cloudfunctions.net",
"BEWELL_CATALYST_ORG_LOCK": "your-org-id"
}
}
}
}Multi-organization sessions (rare, operator-driven) simply omit the lock. The lock is a convenience guard against accidental cross-organization writes; the server-side membership check remains the hard boundary either way.
Per-type contracts
Common required fields: organizationId, contentSlug, name.
Common optional fields: description, tags, author, analyticsId,
isPractice, includeInAiChat.
Type | Additionally required | Optional extras | Notes |
|
|
| |
|
|
| Directly streamable file (mp4/webm); a YouTube page URL will not play |
|
|
| The card shows "(0 seconds)" without a real duration |
|
| markdown | Full-screen viewer |
|
| none | Served by the |
| none | none | Name-only config card |
| none | none | Breathing pattern is a user choice at runtime |
| none | none | Name-only config card |
durationSeconds is a positive integer (max 86400) and is not probed
server-side: measure the real duration locally (for example with
ffprobe) and pass it.
analyticsId enables completion tracking and is write-once: it can be
set on create (recommended value: the contentSlug) or added later, but
never changed or cleared once set. Without it the activity is untracked.
Media workflow
Always upload_media first, then pass the returned finalUrl into the
create/update call. Media URL fields only accept finalUrl values minted
for your own organization and environment: external URLs are rejected.
Role | Feeds | Formats | Max size |
|
|
| 500 MB |
|
|
| 50 MB |
|
|
| 5 MB |
|
|
| 2 MB |
| images inside |
| 2 MB |
filePath must be a local path on the machine running the MCP server. The
MIME type is inferred from the extension (pass contentType explicitly to
override). Re-uploading with the same role and the same file extension
overwrites the previous file; the same role with a different extension
creates a sibling file instead. That is harmless: only the finalUrl you
pass to create/update is referenced, and delete_activity's folder
cleanup collects any orphans. inline creates a new file per call.
Update semantics (PATCH)
update_* tools patch, they do not replace:
Omitted optional field: the stored value is preserved.
Explicit
null: the stored value is cleared (tags: []clears tags).nameand the type's required fields (for examplecontentUrl+durationSecondsfor video) must be re-sent on every update.analyticsId: omit to preserve. Changing or clearing an existing value is refused.typeis immutable; the update tools re-assert it and the server verifies it matches.
Deleting
delete_activity removes the activity document and best-effort deletes its
uploaded media. Two caveats:
Placements are not checked. If a teacher has placed the activity in a course template or course, deleting it leaves a dangling reference (the app renders nothing for it). Check with the teacher before deleting anything that may be in use.
Only MCP-created activities can be deleted.
Deletion is idempotent: a missing slug returns
{"deleted": false, "reason": "not-found"} without error. In a successful
response, mediaCleanedUp: false means the document was deleted but the
media folder could not be cleaned up.
Error glossary
Status | Meaning | What to do |
| A field failed validation; the message names it | Fix the named field. For "first-party media URL" errors, use |
| The activity was authored in-app | Leave it alone; create a new slug for your own version |
| The slug is taken by another type | Choose a new |
| Attempt to change/clear a set | Omit |
| Key missing, malformed, revoked or expired | Check |
| The | Call |
| Rate limit (100/min per key, 30/min per IP) | Wait a minute, retry |
| Server-side failure | Retry once; report if persistent |
Development
npm install
npm run build # tsc -> dist/
npm run lint # eslint
npm test # vitestLicense
MIT
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/bewellit/bewell-catalyst-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server