Skip to main content
Glama
J-MaFf

s2-netbox-mcp

by J-MaFf

get_access_level

Retrieve details of a specific access level using its unique key. Get the exact information you need for a single S2 NetBox access level.

Instructions

Returns the details of a single access level for a given ACCESSLEVELKEY (wraps NBAPI GetAccessLevel).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ACCESSLEVELKEYYesRequired. The unique ACCESSLEVELKEY of the access level to retrieve.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.3

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only says the operation 'returns details'; it does not disclose error behavior, permissions, whether the key must be valid, or what the returned details look like.

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

Conciseness5/5

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

The description is a single front-loaded sentence that states the operation, target, and required input in one line. There is no padding, and the key information is immediately visible.

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 single-key retrieval tool, the description plus full parameter schema is minimally sufficient for an agent to attempt a call. However, with no output schema and no annotations, the lack of return structure or error behavior leaves some uncertainty about what 'details' will be returned.

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

Parameters3/5

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

Schema description coverage is 100%, and the ACCESSLEVELKEY parameter is already documented as required and unique. The tool description mostly restates the parameter name ('for a given ACCESSLEVELKEY') without adding meaningful semantic detail beyond the schema.

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 clearly states the action ('Returns') and the resource ('details of a single access level'), and names the required ACCESSLEVELKEY. The word 'single' also helps distinguish it from plural siblings like get_access_levels and get_access_level_names.

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

Usage Guidelines3/5

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

Usage context is implied: call this when you have an ACCESSLEVELKEY and need one access level's details. However, it gives no explicit guidance about when to prefer get_access_levels or get_access_level_group, leaving selection to inference.

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