Skip to main content
Glama
scalekit-inc

Scalekit MCP Server

Official

generate_admin_portal_link

Generate an admin portal magic link for a specific organization and environment to access administrative functions.

Instructions

Generate a link to the admin portal for the selected organization. Requires environmentId parameter (format: env_). The tool requires organization id to be passed (e.g. org_123). This link is also called admin portal magic link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
environmentIdYes
organizationIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the full burden of behavioral disclosure. It reveals the parameter formats and the alias, but it does not state whether generating the link has side effects, requires special authentication, is reversible, or returns a URL. These are meaningful gaps for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the core action in the first sentence. The second and third sentences are somewhat repetitive in requiring the two parameters, but they include useful format details, so the overall length is still efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter tool, the description provides enough to attempt invocation. However, with no output schema and no annotations, it omits expected return behavior (what the generated link looks like) and any side-effect or authorization context, leaving an agent with meaningful uncertainty.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It does so by giving explicit formats and examples for both parameters: environmentId as 'env_<number>' and organizationId as 'org_123'. However, the description's 'env_<number>' wording is narrower than the schema's broader regex '^env_\\w+$', introducing slight ambiguity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Generate') and resource ('link to the admin portal for the selected organization'), and clarifies the alias 'admin portal magic link.' This makes the tool's purpose immediately understandable and distinct from related tools like create_connected_account_magic_link.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description lists required parameters but provides no explicit guidance about when to use this tool versus alternatives such as create_connected_account_magic_link. There is no mention of use cases, exclusions, or conditions favoring this tool over siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.