> **Building with AI coding agents?** Install the authstack plugin with one command. This equips your agent with accurate Scalekit implementation patterns.
>
> **Recommended**:
> ```bash
> npx @scalekit-inc/cli setup
> ```
>
> Global:
> ```bash
> npm install -g @scalekit-inc/cli
> scalekit setup
> ```
>
> Supports Claude Code, Cursor, GitHub Copilot, Codex + skills for 40+ agents.
> Features: full-stack-auth, agent-auth, mcp-auth, modular-sso, modular-scim.
> [Full setup guide](https://docs.scalekit.com/dev-kit/build-with-ai/)

---

# Find your identifiers and settings

Locate Scalekit identifiers and configuration settings in the dashboard, from the environment URL to the resource id and login page links.
Most setup questions come down to one thing: **where does a value live in the dashboard?** This page maps each Scalekit identifier and common setting to its exact dashboard location, so you can copy what you need and get back to building.

Every path on this page starts from the [Scalekit dashboard](https://app.scalekit.com/). Confirm you are in the correct environment before you copy a value, because each environment has its own identifiers. For more on environments, see [Manage environments](/dev-kit/guides/dashboard/environments/).

## Identifiers and credentials

Use these values to initialize the SDK and authenticate API requests.

| Value | Dashboard location | Notes |
|-------|--------------------|-------|
| Environment URL | **Settings > API credentials** | Labeled **Environment URL**. Your workspace has one URL per environment, such as `https://your-subdomain.scalekit.dev` (development) and `https://your-subdomain.scalekit.com` (production). Maps to `SCALEKIT_ENVIRONMENT_URL`. |
| Client ID | **Settings > API credentials** | Maps to `SCALEKIT_CLIENT_ID`. |
| Client secret | **Settings > API credentials** | Maps to `SCALEKIT_CLIENT_SECRET`. Treat the secret like a password: store it in an environment variable and never commit it to source control. |
| Resource id | **MCP Servers > your server > Configuration** | The `res_...` identifier for an MCP or API resource. Maps to `SCALEKIT_RESOURCE_ID`. Use it as the resource identifier when no server URL is set. |

> caution: Keep the client secret out of source control
>
> The client secret authenticates your application to Scalekit. Load it from an environment variable such as `SCALEKIT_CLIENT_SECRET` so a leaked repository never exposes it.

For the full setup workflow that uses these values, see [Set up environment & SDK](/authenticate/set-up-scalekit/). To authenticate API requests with them, see [Authenticate Scalekit API requests](/guides/authenticate-scalekit-api/).

## Settings and configuration

Use these paths to configure how Scalekit behaves and how your login page appears.

| Setting | Dashboard location | Notes |
|---------|--------------------|-------|
| Login page footer links | **Settings > Application details** | Add your terms of service and privacy policy URLs. Scalekit surfaces both links on the login page once you configure them. |
| Enabled SSO connections | **Authentication > Auth methods > Enterprise SSO** | Review which enterprise SSO connections are active. The connection count here matches the usage shown on your billing page. |
| Add MCP server | **MCP Servers** | The **Add MCP server** option appears only when you set the product module in the top-left selector to **Auth for SaaS**. Switch the module first if you don't see the option. |
| Access token claims | Access token template API | Configure email and permission claims in the access token through the [access token template API](/authenticate/interceptors/auth-flow-interceptors/). A self-serve dashboard portal for this configuration is planned. |

> note: Access token claims portal is coming
>
> Today you configure access token claims through the access token template API. A self-serve dashboard portal for the same configuration is planned and is not yet available.

## Related pages

- [Set up environment & SDK](/authenticate/set-up-scalekit/) walks through creating an account and initializing the SDK with these credentials.
- [Manage environments](/dev-kit/guides/dashboard/environments/) explains how development, staging, and production environments keep separate identifiers.
- [Intercept authentication flows](/authenticate/interceptors/auth-flow-interceptors/) covers customizing access token claims.


---

## More Scalekit documentation

| Resource | What it contains | When to use it |
|----------|-----------------|----------------|
| [/llms.txt](/llms.txt) | Structured index with routing hints per product area | Start here — find which documentation set covers your topic before loading full content |
| [/llms-full.txt](/llms-full.txt) | Complete documentation for all Scalekit products in one file | Use when you need exhaustive context across multiple products or when the topic spans several areas |
| [sitemap-0.xml](https://docs.scalekit.com/sitemap-0.xml) | Full URL list of every documentation page | Use to discover specific page URLs you can fetch for targeted, page-level answers |
