A Model Context Protocol (MCP) server provides comprehensive tools for managing Scalekit environments, organizations, users, connections, and workspace operations. Built for developers who want to connect their AI tools to Scalekit context and capabilities based on simple natural language queries.
This MCP server enables AI assistants to interact with Scalekit's identity and access management platform through a standardized set of tools. It provides secure, OAuth-protected access to manage environments, organizations, users, authentication connections, and more.
- Environment management and configuration
- Organization and user management
- Workspace member administration
- OIDC connection setup and management
- MCP server registration and configuration
- Role and scope management
- Admin portal link generation
Using OAuth | Using mcp-remote proxy |
---|---|
VS Code (version 1.101 or greater) | |
{
"servers": {
"scalekit": {
"type": "http",
"url": "https://mcp.scalekit.com/"
}
}
} |
{
"mcpServers": {
"scalekit": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.scalekit.com/"]
}
}
} |
Based on your MCP Host, configuration instructions to add Scalekit as an MCP Server can be found below:
Configure the Claude app to use the MCP server:
- Open the Claude Desktop app, go to Settings, then Developer
- Click Edit Config
- Open the claude_desktop_config.json file
- Copy and paste the server config to your existing file, then save
- Restart Claude
{
"mcpServers": {
"scalekit": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.scalekit.com/"]
}
}
}
Configure Cursor to use the MCP server:
- Open Cursor, go to Settings, then Cursor Settings
- Select MCP on the left
- Click Add "New Global MCP Server" at the top right
- Copy and paste the server config to your existing file, then save
- Restart Cursor
{
"mcpServers": {
"scalekit": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.scalekit.com/"]
}
}
}
Configure Windsurf to use the MCP server:
- Open Windsurf, go to Settings, then Developer
- Click Edit Config
- Open the windsurf_config.json file
- Copy and paste the server config to your existing file, then save
- Restart Windsurf
{
"mcpServers": {
"scalekit": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.scalekit.com/"]
}
}
}
- Description: List all available environments
- Scopes: Environment Read
- Description: Get environment details by ID (e.g., env_123)
- Parameters: environmentId
- Scopes: Environment Read
- Description: List all roles in the specified environment
- Parameters: environmentId (format: env_)
- Scopes: Environment Read
- Description: Create a new role in the specified environment
- Parameters:
- environmentId (format: env_)
- roleName
- displayName
- description
- isDefault (boolean)
- Scopes: Environment Write
- Description: List all scopes in the specified environment
- Parameters: environmentId (format: env_)
- Scopes: Environment Read
- Description: Create a new scope in the specified environment
- Parameters:
- environmentId (format: env_)
- scopeName
- description
- Scopes: Environment Write
- Description: List all members in the current workspace
- Parameters: pageToken (1-based index)
- Scopes: Workspace Read
- Description: Invite a new member to the current workspace
- Parameters: email
- Scopes: Workspace Write
- Description: List all organizations under the specified environment
- Parameters:
- environmentId (format: env_)
- pageToken
- Scopes: Organization Read
- Description: Get details of an organization by ID (e.g., org_123)
- Parameters:
- environmentId (format: env_)
- organizationId
- Scopes: Organization Read
- Description: Create a new organization under the specified environment
- Parameters: environmentId (format: env_)
- Scopes: Organization Write
- Description: Generate a magic link to the admin portal for the selected organization
- Parameters:
- environmentId (format: env_)
- organizationId (e.g., org_123)
- Scopes: Organization Write
- Description: Create a new user in the selected organization
- Parameters:
- environmentId (format: env_)
- organizationId
- externalId
- firstName
- lastName
- metadata (JSON key-value pairs)
- Scopes: Organization Write
- Description: List all users in the selected organization
- Parameters:
- environmentId (format: env_)
- organizationId
- pageToken
- Scopes: Organization Read
- Description: Update the settings of an organization
- Parameters:
- environmentId (format: env_)
- organizationId
- feature (JSON array of feature objects)
- Scopes: Organization Write
- Description: List all connections for the specified environment
- Parameters: environmentId (format: env_)
- Scopes: Environment Read
- Description: List all connections for the selected organization
- Parameters:
- environmentId (format: env_)
- organizationId (e.g., org_123)
- Scopes: Organization Read
- Description: Create a new OIDC connection for the specified environment
- Parameters:
- environmentId (format: env_)
- provider (OKTA, GOOGLE, MICROSOFT_AD, AUTH0, ONELOGIN, PING_IDENTITY, JUMPCLOUD, CUSTOM, GITHUB, GITLAB, LINKEDIN, SALESFORCE, MICROSOFT, IDP_SIMULATOR, SCALEKIT, ADFS)
- Scopes: Environment Write
- Description: Update an existing OIDC connection for the specified environment
- Parameters:
- environmentId (format: env_)
- connectionId (e.g., conn_123)
- key_id
- provider
- oidc_config (comprehensive OIDC configuration object)
- Scopes: Environment Write
- Description: Enable an existing connection for the specified environment
- Parameters:
- environmentId (format: env_)
- connectionId (e.g., conn_123)
- Scopes: Environment Write
- Description: List all MCP servers in the specified environment
- Parameters:
- environmentId (format: env_)
- pageToken
- Scopes: Environment Read
- Description: Register a new MCP server in the specified environment
- Parameters:
- environmentId (format: env_)
- name
- description
- url
- access_token_expiry (in seconds)
- provider (optional, required when use_scalekit_authentication is false)
- use_scalekit_authentication (boolean)
- Scopes: Environment Write
- Description: Update an existing MCP server in the specified environment
- Parameters:
- environmentId (format: env_)
- id (MCP server ID)
- name (optional)
- description (optional)
- url (optional)
- access_token_expiry (optional, in seconds)
- provider (optional)
- use_scalekit_authentication (optional boolean)
- Scopes: Environment Write
- Description: Switch the authentication of an existing MCP server to Scalekit authentication
- Parameters:
- environmentId (format: env_)
- id (MCP server ID)
- Scopes: Environment Write
Scalekit MCP server uses OAuth2.1 based authentication. As soon as you register Scalekit MCP Server in your MCP Host, your MCP Host will initiate an OAuth authorization workflow so that the MCP Client can get appropriate tokens to securely communicate with Scalekit's MCP Server.
Note
If you are building your own MCP Server and would like to add OAuth based authorization, you can refer to our solution Auth for MCP Servers here: https://docs.scalekit.com/guides/mcp/overview/