Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Scalekit MCP Server

Learn how to use the Scalekit MCP Server to manage your users, organizations, and applications.

Scalekit Model Context Protocol (MCP) server provides comprehensive tools for managing 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

Connect the Scalekit MCP server to your AI coding tool. Find your tool below and follow the steps — your client will prompt you to sign in via OAuth on first use.

Run this command in your terminal:

Terminal window
claude mcp add --transport http scalekit https://mcp.scalekit.com/
  1. Open Claude Desktop
  2. Go to Settings → Connectors
  3. Click Add custom connector
  4. Enter Scalekit as the name and https://mcp.scalekit.com as the URL
  5. Click Connect to authenticate

Edit .vscode/mcp.json in your project (requires VS Code 1.101 or later):

{
"servers": {
"scalekit": {
"type": "http",
"url": "https://mcp.scalekit.com/"
}
}
}

Edit ~/.cursor/mcp.json, or open Cursor Settings → MCP → Add New Global MCP Server and paste the config:

{
"mcpServers": {
"scalekit": {
"url": "https://mcp.scalekit.com/"
}
}
}

Edit ~/.codeium/windsurf/mcp_config.json:

{
"mcpServers": {
"scalekit": {
"serverUrl": "https://mcp.scalekit.com/"
}
}
}

Edit ~/.gemini/settings.json:

{
"mcpServers": {
"scalekit": {
"httpUrl": "https://mcp.scalekit.com/"
}
}
}

Run this command in your terminal:

Terminal window
codex mcp add scalekit --url https://mcp.scalekit.com/

Edit opencode.json in your project root:

{
"mcp": {
"scalekit": {
"type": "remote",
"url": "https://mcp.scalekit.com/",
"enabled": true
}
}
}

Add to your MCP configuration:

{
"mcpServers": {
"scalekit": {
"type": "streamable-http",
"url": "https://mcp.scalekit.com/"
}
}
}

Add to your Zed settings.json:

{
"context_servers": {
"scalekit": {
"url": "https://mcp.scalekit.com/"
}
}
}

Edit ~/.kiro/settings/mcp.json:

{
"mcpServers": {
"scalekit": {
"url": "https://mcp.scalekit.com/"
}
}
}

Go to Settings → MCP Servers → Add MCP Server and enter https://mcp.scalekit.com/, or add to your Warp MCP config:

{
"scalekit": {
"serverUrl": "https://mcp.scalekit.com/"
}
}

Go to Prompt Tools → Add MCP and enter https://mcp.scalekit.com/.

The source code for the Scalekit MCP server is available on GitHub, including a full list of available tools and their descriptions.

  • Open an issue if you find a bug or have a question.
  • Submit a PR or open an issue to suggest new tools.