Skip to content

Permitted MCP Tools

The Tools section of MCP Configuration controls which tool categories are exposed on your tenant MCP server and who can use them. Each row is a category (for example blueprints), not an individual MCP tool name — all registered tools in that category inherit the same exposure settings.

Default posture

Every category ships disabled with empty role filters. Enable categories deliberately and scope them by role before connecting clients. Pair with admin-only access until you understand what each user needs.

Open the tools table

  1. Go to Privileged Home → MCP Configuration.
  2. Scroll to the Tools panel (Exposed MCP tools).
  3. For each category row, set Enabled, Roles, Workspace roles, and Workspace labels as needed.
  4. Click Save.

The table lists eleven categories. The Tool column shows the admin label and the category ID (for example blueprints).

Per-category controls

ColumnFieldBehavior
EnabledenabledWhen off, no tools in this category are available to any user, regardless of role.
RolesrolesTenant-level roles allowed to use tools in this category. Select All roles (*) or specific roles (for example admin, editor). Empty means no role restriction — any authenticated user who passes other checks can use the category.
Workspace roleswsRolesWorkspace membership roles required when the user acts in a workspace context. Use All workspace roles (*) or specific values. Empty means no workspace-role restriction.
Workspace labelswsLabelsUser's active workspace must carry at least one of these labels. Empty means no label restriction. When a label is set, the user must match at least one listed label.

Workspace columns when workspaces are inactive

Workspace roles and Workspace labels are disabled in the admin form when workspace configuration is not active (workspace-configuration.isActive is false). In that mode, only Enabled and Roles apply.

When you later enable workspaces, configure workspace scoping before opening MCP to non-admin roles.

Category ID vs individual tool names

Admin stores configuration by category ID (blueprints, users, events, …). The MCP server resolves each registered tool against its category:

  1. Look for an exposedTools entry whose toolId matches the tool's own ID (for example list-blueprints).
  2. If none, fall back to an entry whose toolId matches the tool's category (for example blueprints).

In practice, configure the category row — all tools in that category share the same enabled flag and role filters.

How authorization works

When a connected client lists or calls tools, Qelos evaluates checks in order:

mermaid
flowchart TD
  A[User requests MCP tool] --> B{Admin-only mode?}
  B -->|Yes| C{Privileged user?}
  B -->|No| D{Category enabled?}
  C -->|No| X[Denied]
  C -->|Yes| D
  D -->|No| X
  D -->|Yes| E{Roles match?}
  E -->|No| X
  E -->|Yes| F{Workspace roles match?}
  F -->|No| X
  F -->|Yes| G{Workspace labels match?}
  G -->|No| X
  G -->|Yes| H{Tool requires admin privilege?}
  H -->|Yes| I{Privileged user?}
  H -->|No| Y[Allowed]
  I -->|No| X
  I -->|Yes| Y

Admin-only gate

When admin-only access is enabled, only privileged users can use MCP at all — users with the admin role or the privileged flag. Non-privileged users are blocked before any tool check runs.

Category and role filters

For each tool, the server loads the category's exposedTools config and verifies:

  • enabled is true
  • roles — if non-empty, the user must have at least one listed role, or the list must include *
  • wsRoles — same rule for workspace roles
  • wsLabels — if non-empty, the user's workspace must include at least one listed label

Admin-privileged tools

Some registered tools require admin privilege in addition to passing category filters (requiredPrivilege: 'admin'). Even if the category is enabled for a non-admin role, these tools remain unavailable unless the connecting user is privileged.

Tools marked Admin only in the table below always require a privileged user, regardless of role filters on the category row.

Tool categories

The admin table defines eleven categories. The Registered tools column lists MCP tools currently in the server registry for that category.

Category IDAdmin labelDescriptionRegistered tools
blueprintsBlueprintsList and query blueprint data modelslist-blueprints, get-blueprint-entities, create-blueprint-entity
usersUsersManage tenant users and profileslist-users (Admin only)
configurationsConfigurationsRead and update tenant configurationsget-app-config, list-configurations (Admin only)
workspacesWorkspacesManage workspaces, members, and labelslist-workspaces
eventsEventsList, emit, and subscribe to application eventslist-events (Admin only)
pluginsPluginsManage installed plugins and micro-frontends
agentsAI agentsChat with and configure AI agents
integrationsIntegrationsManage integration sources and workflowslist-integration-sources (Admin only)
permissionsPermissionsCheck and manage user permissions
contentContentManage drafts and published content
storageStorageManage storage buckets and uploaded assets

Categories without registered tools appear in the admin table so you can pre-configure exposure before new tools ship. Enabling those rows has no effect until tools are added to the registry.

Blueprints (blueprints)

Expose data-model operations to AI clients:

ToolWhat it does
list-blueprintsList blueprint definitions for the tenant
get-blueprint-entitiesList entities for a blueprint (supports limit, skip, sort)
create-blueprint-entityCreate a new entity in a blueprint

All three use the standard user SDK path. See Create Blueprints for blueprint concepts.

Configurations (configurations)

ToolWhat it doesPrivilege
get-app-configFetch tenant app configuration metadataUser
list-configurationsList tenant configuration documentsAdmin

Workspaces (workspaces)

ToolWhat it does
list-workspacesList workspaces available to the authenticated user

Use Workspace roles and Workspace labels on this category (and others) to limit exposure when workspaces are active.

Users, events, integrations

These categories expose admin-only registry tools:

CategoryToolWhat it does
userslist-usersList tenant users (optional username, roles filters)
eventslist-eventsList tenant events (supports pagination and filters)
integrationslist-integration-sourcesList integration sources (optional kind filter)

Privileged users still need the category Enabled and must pass role/workspace filters.

Agents, plugins, content, storage, permissions

These categories are defined in the admin UI for future and extended tooling. No MCP tools are registered for them yet. Leave them disabled unless you are testing upcoming capabilities.

Start minimal, verify client connectivity, then expand.

Read-only administrator

Best first setup while learning MCP:

SettingValue
Admin-only accessEnabled
blueprintsEnabled, roles: admin
configurationsEnabled, roles: admin

Connected admins can inspect blueprints and app configuration. list-configurations works because admins are privileged; get-app-config is available to any role that passes filters, but admin-only mode limits who can connect.

Example prompts once connected: "List all blueprints" or "What is the current app configuration?"

Broader team — blueprint read access

When you disable admin-only and want editors to query data without admin tools:

SettingValue
Admin-only accessDisabled
blueprintsEnabled, roles: editor, wsRoles: member (adjust to your workspace roles)

Editors can call list-blueprints and get-blueprint-entities but not create-blueprint-entity unless your blueprint permissions allow entity creation through the SDK path. Keep users, events, and integrations disabled unless editors need them.

Incident triage — events for admins

For operational debugging with admin users:

SettingValue
Admin-only accessEnabled
eventsEnabled, roles: admin
blueprintsEnabled, roles: admin

Admins can pull recent error events and cross-reference blueprint data. See Examples & Ideas for prompt patterns.

Security notes

  • Enable admin-only first — prevents non-admins from completing OAuth consent while you configure tools.
  • Enable the smallest set of categories — each enabled category exposes every registered tool in that category to users who pass filters.
  • Avoid * on roles unless every tenant role should access the category — prefer explicit roles such as admin or editor.
  • Admin-privileged tools (list-users, list-events, etc.) still require a privileged connecting user even when role filters are broad.
  • Review after role changes — if you add new tenant or workspace roles, revisit MCP tool rows to ensure exposure still matches intent.

Build SaaS Products Without Limits.