@transcend-io/mcp-server-admin
v0.3.1
Published
Transcend MCP Server — Admin tools.
Keywords
Readme
@transcend-io/mcp-server-admin
Alpha — this package is under active development and has not yet been published to npm. APIs may change without notice.
Transcend MCP Server for organization administration. Provides tools for managing users, teams, API keys, and organization settings.
Requires Node.js ≥ 22.12 (see engines in package.json).
For local runs from this repository, copy secret.env.example to secret.env at the repo root (gitignored) and set your API key (see Run from the monorepo).
Install
When the package is available on npm, install the CLI globally:
npm install -g @transcend-io/mcp-server-adminUntil then, run from a checkout of this repository (see Run from the monorepo below).
Usage
# With TRANSCEND_API_KEY in the environment; from the monorepo use secret.env (see Run from the monorepo)
TRANSCEND_API_KEY=your-api-key transcend-mcp-adminThe process speaks MCP over stdio and is meant to be launched by an MCP client (for example Cursor or Claude Desktop), not used as an interactive shell.
MCP client configuration
npx runs the package’s transcend-mcp-admin binary (see bin in package.json).
{
"mcpServers": {
"transcend-admin": {
"command": "npx",
"args": ["-y", "@transcend-io/mcp-server-admin"],
"env": {
"TRANSCEND_API_KEY": "your-api-key"
}
}
}
}When developing in this repository, reuse the same variable names from root secret.env in the env block, or use your client’s env-file support if it has one.
Run from the monorepo
Credentials — From the repository root, copy
secret.env.exampletosecret.envand setTRANSCEND_API_KEY(and optional URL overrides).Build and run —
node ./dist/cli.mjsmatches thetranscend-mcp-adminbin(usenodebecausepnpm exec transcend-mcp-adminmay not resolve this package’s own binary in a pnpm workspace):
# from the repository root
pnpm exec turbo run build --filter="@transcend-io/mcp-server-admin..."
set -a && source ./secret.env && set +a
pnpm -F @transcend-io/mcp-server-admin exec node ./dist/cli.mjsAlternative: ./scripts/mcp-run.sh ./packages/mcp/mcp-server-admin/dist/cli.mjs (sources secret.env when present; run after build).
See CONTRIBUTING.md for workspace layout and pnpm --filter workflows.
Environment variables
| Variable | Required | Default | Description |
| ------------------- | -------- | ------------------------------------------ | -------------------------------------------------- |
| TRANSCEND_API_KEY | Yes | — | Transcend API key |
| TRANSCEND_API_URL | No | https://api.transcend.io | GraphQL backend API URL (matches CLI convention) |
| SOMBRA_URL | No | https://multi-tenant.sombra.transcend.io | Sombra REST API URL (matches CLI / SDK convention) |
Monorepo: keep these in root secret.env (from secret.env.example); see Run from the monorepo.
Tools
admin_test_connection— Test API connectivityadmin_get_current_user— Get the authenticated useradmin_get_organization— Get organization detailsadmin_get_privacy_center— Get privacy center configurationadmin_list_users— List organization usersadmin_list_teams— List teamsadmin_list_api_keys— List API keysadmin_create_api_key— Create a new API key
Related packages
Also available as part of the unified @transcend-io/mcp which includes all domains. See the root README for the full list.
