Skip to content

Team Leader Overview

As a team leader, you configure plugins, MCP servers, and settings for your team. This guide explains your responsibilities and options.

Team Plugins

Select which plugins your team uses from the organization’s allowed list.

MCP Servers

Configure MCP servers (context7, custom tools) for your team.

Session Settings

Set default timeouts and auto-resume behavior.

Project Overrides

Control whether developers can add project-specific settings.

These are set at the organization level and cannot be overridden:

SettingControlled By
Security blocks (plugins, servers, images)Org Admin
Safety-net policy (block/warn/allow)Org Admin
Allowed marketplacesOrg Admin
Network policy restrictionsOrg Admin

You have two ways to manage your team’s configuration:

Your team profile lives directly in the org config file. Changes require org admin to update the file.

Best for: Small teams, simple setups, teams that don’t need frequent changes.

Learn more about inline configuration →

Your team maintains its own config repository. You can update plugins via PRs without involving org admin.

Best for: Autonomous teams, frequent updates, teams with specific tooling needs.

Learn more about GitOps configuration →

A typical team profile includes:

{
"backend": {
"description": "Backend development team",
"additional_plugins": [
"scc-safety-net@sandboxed-code-official",
"java-tools@internal"
],
"additional_mcp_servers": {
"context7": {
"type": "http",
"url": "https://context7.example.com"
}
},
"delegation": {
"allow_project_overrides": true,
"allow_additional_plugins": ["team-*"]
},
"session": {
"timeout_hours": 12
}
}
}
  • Start with scc-safety-net for git protection
  • Add language/framework specific tools your team needs
  • Avoid enabling plugins “just in case” — keep it focused
  • Yes: Gives flexibility, good for diverse projects
  • No: Ensures consistency, good for security-sensitive teams
  • 8 hours: Security-focused, forces daily re-auth
  • 12 hours: Standard workday
  • 24 hours: Long-running tasks, data processing

Always validate before deploying:

Terminal window
scc team validate

Or validate a specific config file:

Terminal window
scc org validate team-config.json

Inline Configuration

Simple setup, org-managed. Set up →

GitOps Configuration

Team-managed, more autonomy. Set up →