Skip to content

Organization Admin Overview

As an organization admin, you define the security boundaries and governance rules that all teams and developers must follow.

Security Policies

Define what plugins, MCP servers, and images are blocked globally.

Delegation

Control which teams can add plugins, MCP servers, or custom configurations.

Marketplaces

Approve plugin marketplaces that teams can use.

Team Profiles

Create and manage team profiles (inline or federated).

SCC enforces a hierarchical configuration system:

Organization (org-config.json)
↓ security blocks + defaults
Team Profile (profiles section)
↓ additional plugins/servers
Project (.scc.yaml in repo root)
↓ project-specific additions

Each layer can add to the previous, but cannot remove security restrictions.

What You Control (That Cannot Be Overridden)

Section titled “What You Control (That Cannot Be Overridden)”
SettingPurpose
security.blocked_pluginsPlugin patterns nobody can use
security.blocked_mcp_serversMCP server patterns nobody can use
security.blocked_base_imagesDocker images nobody can use
security.allow_stdio_mcpWhether stdio MCP servers are permitted
defaults.allowed_pluginsGovernance whitelist for plugins

What Teams Control (Within Your Boundaries)

Section titled “What Teams Control (Within Your Boundaries)”
SettingControlled By
Additional pluginsTeam leads (if delegated)
Additional MCP serversTeam leads (if delegated)
Session settingsTeam leads
Project override policyTeam leads

Team configurations live directly in your org config file:

{
"profiles": {
"backend": {
"additional_plugins": ["java-tools@internal"]
}
}
}

Best for: Small organizations, centralized control.

Teams manage their own config repositories:

{
"profiles": {
"platform": {
"config_source": {
"source": "github",
"owner": "myorg",
"repo": "platform-config"
}
}
}
}

Best for: Large organizations, team autonomy.

Always validate your configuration:

Terminal window
scc org validate org-config.json

Check effective configuration:

Terminal window
scc config explain

Config Setup

Create your org-config.json. Set up →