Scalekit MCP server

by scalekit-inc

Not rated
GitHub

About

Give your agents access to 100+ connectors and 500+ tools with secure, per-user managed authentication for every tool call

Details

Author
scalekit-inc
Categories
Developer Tools, API, Automation

Setup

Install Scalekit MCP server in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/scalekit-inc/scalekit-mcp-server

Follow the installation instructions in the repository README, then restart your MCP client.

Give your agents access to 100+ connectors and 500+ tools with secure, per-user managed authentication for every tool call

Auth stack for AI apps ⚡ Official Scalekit MCP Server

Official Model Context Protocol server for AI agents to interact with Scalekit's identity platform through natural language

- Natural Language Identity Management: Manage users, organizations, and connections through AI conversations
- OAuth-Protected Access: Secure AI agent interactions with enterprise authentication
- Comprehensive API Coverage: Full access to Scalekit's identity and access management capabilities
- Multi-Client Support: Works with Claude Code, Claude Desktop, VS Code, Cursor, Windsurf, Gemini CLI, Codex, OpenCode, Roo Code, Zed, Kiro, Warp, v0 by Vercel, and any MCP-compatible client

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

claude mcp add --transport http scalekit https://mcp.scalekit.com/

- Open Claude Desktop
- Go toSettings → Connectors
- ClickAdd custom connector
- EnterScalekitas the name andhttps://mcp.scalekit.comas the URL
- ClickConnectto authenticate

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

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

Edit~/.cursor/mcp.json, or openCursor Settings → MCP → Add New Global MCP Serverand paste the config:

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

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

{ "mcpServers": { "scalekit": { "serverUrl": "https://mcp.scalekit.com/" } } }
{ "mcpServers": { "scalekit": { "httpUrl": "https://mcp.scalekit.com/" } } }
codex mcp add scalekit --url https://mcp.scalekit.com/

Editopencode.jsonin your project root:

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

Go toSettings → MCP Servers → Add MCP Serverand enterhttps://mcp.scalekit.com/, or add to your Warp MCP config:

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

Go toPrompt Tools → Add MCPand enterhttps://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)

- 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

- 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

- Description: Get details of an organization by ID (e.g., org_123)
- Parameters:

- environmentId (format: env_<!-- -->)
- organizationId

- 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)

- Description: Create a new user in the selected organization
- Parameters:

- environmentId (format: env_<!-- -->)
- organizationId
- email
- externalId
- firstName
- lastName
- metadata (JSON key-value pairs)

- Description: List all users in the selected organization
- Parameters:

- environmentId (format: env_<!-- -->)
- organizationId
- pageToken

- Description: Update the settings of an organization
- Parameters:

- environmentId (format: env_<!-- -->)
- organizationId
- feature (JSON array of feature objects)

- 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)

- 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)

- 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)

- Description: Enable an existing connection for the specified environment
- Parameters:

- environmentId (format: env_<!-- -->)
- connectionId (e.g., conn_123)

- Description: List all MCP servers in the specified environment
- Parameters:

- environmentId (format: env_<!-- -->)
- pageToken

- 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)

- 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)

- Description: Switch the authentication of an existing MCP server to Scalekit authentication
- Parameters:

- environmentId (format: env_<!-- -->)
- id (MCP server ID)

- Environment Management: Create and configure Scalekit environments
- Organization Operations: Manage enterprise organizations and their settings
- User Administration: Handle user lifecycle and permissions
- Connection Management: Configure SAML/OIDC identity provider connections
- Workspace Administration: Manage team members and roles
- Portal Integration: Generate admin portal links and manage access
- MCP Server Registry: Register and configure additional MCP servers

Scalekit MCP server uses OAuth 2.1 for secure authentication. When you register the MCP server with your client, an OAuth authorization workflow ensures secure, token-based communication between your AI agent and Scalekit's platform.

- 📚Scalekit Documentation
- 🔧
API Reference
- 🚀
Full Stack Auth Quickstart
- 💬
Community Examples
- ⚡
Model Context Protocol Spec

[!NOTE] Building your own OAuth-protected MCP server? Check out ourAuth for MCP Servers guidefor implementation patterns.

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

The MCP server for Bitrix24 provides AI assistants with structured access to the Bitrix24 API. It delivers up-to-date method descriptions, parameters, and valid values, allowing assistants to work with precise data instead of guesswork. This reduces code errors and accelerates Bitrix24 integration development.

One remote MCP server for 500+ production APIs — Stripe, HubSpot, Postgres, Gmail, and more. OAuth and API key auth, credential management, and a CLI.

Single tool to control all 100+ API integrations, and UI components

Agent-native developer Q&A API with MCP + A2A endpoints for citations, job pickup, and answer submission.

Control Apache Airflow via its API using JWT authentication.

Self-hosted MCP gateway: convert REST/SOAP/GraphQL/SQL APIs into MCP tools with 29 pre-built adapters, OAuth2, RBAC and audit log.

A universal bridge to convert any web API into an MCP server, supporting multiple transport types.

Dynamically creates MCP servers from web API configurations, integrating any REST API, GraphQL endpoint, or web service into MCP-compatible tools.

Hosted MCP server and coordination layer for AI coding agents — live API contracts, database schema, frontend/backend mismatch detection, and shared handoff tickets for Claude Code, Cursor, Codex, and Lovable.

An MCP server that dynamically loads tools from an external JSON file configured via an environment variable.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.