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
Configuration
Section titled “Configuration”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.
Claude Code
Section titled “Claude Code”Run this command in your terminal:
claude mcp add --transport http scalekit https://mcp.scalekit.com/Claude Desktop
Section titled “Claude Desktop”- Open Claude Desktop
- Go to Settings → Connectors
- Click Add custom connector
- Enter
Scalekitas the name andhttps://mcp.scalekit.comas the URL - Click Connect to authenticate
VS Code
Section titled “VS Code”Edit .vscode/mcp.json in your project (requires VS Code 1.101 or later):
{ "servers": { "scalekit": { "type": "http", "url": "https://mcp.scalekit.com/" } }}Cursor
Section titled “Cursor”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/" } }}Windsurf
Section titled “Windsurf”Edit ~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "scalekit": { "serverUrl": "https://mcp.scalekit.com/" } }}Gemini CLI
Section titled “Gemini CLI”Edit ~/.gemini/settings.json:
{ "mcpServers": { "scalekit": { "httpUrl": "https://mcp.scalekit.com/" } }}Run this command in your terminal:
codex mcp add scalekit --url https://mcp.scalekit.com/OpenCode
Section titled “OpenCode”Edit opencode.json in your project root:
{ "mcp": { "scalekit": { "type": "remote", "url": "https://mcp.scalekit.com/", "enabled": true } }}Roo Code
Section titled “Roo Code”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/" }}v0 by Vercel
Section titled “v0 by Vercel”Go to Prompt Tools → Add MCP and enter https://mcp.scalekit.com/.
GitHub
Section titled “GitHub”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.