Skip to main content
Glama
landynsnipes

Enterprise MCP Kit

by landynsnipes

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.2.0

  • Disambiguation4/5

    Each tool targets a distinct read perspective—device context, site overview, site-to-site connectivity, rack context, and power path—so an agent can usually choose the right one. There is mild thematic overlap in site/rack/power summaries, but the bounded scopes keep the boundaries clear.

    Naming Consistency4/5

    All tool names consistently begin with get_, making the read-only convention obvious and predictable. However, the suffixes vary between context, overview, and path, so the naming is not perfectly uniform.

    Tool Count5/5

    Five tools is a focused and appropriate size for a read-only infrastructure visibility server. Each tool covers a meaningful query area without unnecessary redundancy.

    Completeness4/5

    The set covers the core infrastructure visibility concerns: site, device, rack, power, and site-to-site connectivity evidence. It lacks broader device-detail or circuit-list tools, but the bounded summaries avoid major dead ends for the apparent read-only scope.

  • Average 4/5 across 5 of 5 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 21 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under Apache 2.0.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

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

    With no annotations, the description carries the full burden of behavioral disclosure. It does state that the tool performs no write operations and returns only a bounded summary, which is useful. However, it does not elaborate on potential side effects, error behavior, authentication needs, or how 'bounded' manifests in the response. The disclosure is present but minimal.

    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?

    Two sentences, front-loaded with the core action and resource, and every word contributes meaningful information. The summary scope is presented immediately after the verb, and the safety note is concise without padding.

    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?

    The description covers the tool's purpose, scope, and non-mutating nature, which is adequate given the output schema exists. However, it omits crucial parameter semantics — especially since neither parameter is marked required — and gives no explicit guidance on choosing between id and name. These gaps prevent the description from being fully self-sufficient.

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

    Parameters2/5

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

    The schema provides only raw types for id and name with no descriptions, and the description itself adds no parameter-level detail. It is not clear whether one identifier is required, whether they are mutually exclusive, or what happens if both are provided. Since schema description coverage is 0%, the description needed to compensate but did not.

    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 a specific verb ('Read'), a precise resource ('one exact NetBox site'), and the bounded scope of the return value (devices, racks, active circuits, contacts, software compliance). This distinguishes it from the sibling tools, all of which target different resources or aspects of the network.

    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?

    The description implies usage: call this when you need a single site's overview rather than a device-, rack-, or connectivity-level view. However, it does not explicitly state when to use this tool versus the listed siblings, nor does it mention exclusions or prerequisites. The 'one exact' wording helps but leaves the routing decision mostly to inference.

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

  • Behavior4/5

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

    No annotations are provided, so the description carries the behavioral disclosure burden. It explicitly states 'This tool performs no write operations,' which is a meaningful safety guarantee. It does not cover error behavior, but for a simple read-only lookup with an output schema this is sufficient.

    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 two short sentences with no filler. The purpose is front-loaded and the read-only guarantee is stated efficiently.

    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?

    The output schema covers return values, and the read-only behavior is clear. However, the description leaves the identification contract ambiguous: both schema parameters are optional, and the description does not clarify that at least one is needed or whether 'name' refers to the device context name. This is a gap for reliable invocation.

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

    Parameters2/5

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

    Schema description coverage is 0%, and the description does not explain how to use the 'id' or 'name' parameters. The word 'exact' implies a precise identifier, but the description never states that either id or name must be provided, or how they relate to the target device context.

    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 ('Read') and resource ('one exact NetBox device context'), making the operation clear. It also distinguishes itself from sibling tools like get_rack_context and get_site_overview by specifying the target resource type.

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

    Usage Guidelines4/5

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

    The description clearly implies when to use this tool: when an agent needs to retrieve a single device context from NetBox. It does not explicitly name alternatives or exclusions, but the context is unambiguous for a simple read tool.

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

  • Behavior4/5

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

    With no annotations, the description must carry the behavioral burden, and it does by explicitly stating 'This tool performs no write operations' and describing the response as 'bounded'. It does not cover edge cases such as not-found behavior or authentication, but the central read-only side-effect guarantee is clearly disclosed.

    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 two sentences with no redundant filler. It front-loads the action and resource, then adds the key behavioral guarantee, making every clause informative.

    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?

    The tool has an output schema and no true schema-defined parameters, so the description covers most operational facts. However, the unresolved mismatch between the stated selection criteria and the empty input schema, along with the lack of any siblings routing, leaves an agent uncertain about how to actually invoke the tool.

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

    Parameters2/5

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

    The input schema declares zero properties, yet the description says the rack is selected 'by ID or exact site and rack name', implying parameters that are not present in the schema. The zero-parameter baseline would normally be 4, but the description introduces a misleading invocation contract that an agent cannot satisfy based on the provided 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 uses a specific verb, 'Read', and names a precise resource: 'one exact NetBox rack'. It further specifies the returned content ('bounded device elevation summary' and 'recorded power-feed count'), making the tool's purpose clear and distinct from sibling tools that target devices, sites, connectivity, or power paths.

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

    Usage Guidelines4/5

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

    The description establishes a clear usage context: exact single-rack lookup by ID or exact site and rack name. It does not explicitly name alternatives or state when not to use this tool, so it falls short of full routing guidance, but the intended scenario is understandable.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full transparency burden. It explicitly states that the tool performs no write operations and never claims live electrical state, which is strong behavioral disclosure. It does not address edge behaviors such as missing parameters or error handling, but the core safety and data-fidelity caveats are present.

    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 one clean, front-loaded sentence with a follow-up caveat. Every clause contributes: the resource scope, the specific evidence returned, the read-only behavior, and the live-state limitation. There is no redundant filler.

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

    Completeness4/5

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

    Given the output schema exists and the tool is a simple read-only query, the description covers scope, safety, and data limitations well. The main remaining gap is the absence of parameter guidance for id/name, but otherwise the description is substantially complete for an agent to understand and invoke the tool.

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

    Parameters2/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 explain what id and name mean, but it does not. It only says the tool looks at 'one exact device,' leaving unclear whether id is a device ID, whether name is a device name, whether either is sufficient, or whether both are needed.

    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 states a specific verb ('Read') and a precise resource: bounded NetBox inventory evidence for what powers one exact device, listing power ports, cabled PDU outlets, and rack power feeds. This clearly separates it from the sibling tools focused on device context, site overview, rack context, and connectivity paths.

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

    Usage Guidelines4/5

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

    The description gives clear context about what data the tool returns and explicitly excludes live electrical state and write operations, signaling when not to use it. However, it does not explicitly name alternative tools or state a direct 'use this when...' condition, so it falls just short of a 5.

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

  • Behavior4/5

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

    With no annotations, the description carries the disclosure burden and it does so well: it states the read-only nature, bounded scope, exact-site matching, and that no routed path is claimed. It omits details such as auth or result-when-absent, but preserves the key safety and expectation-setting traits.

    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?

    Two dense sentences front-load the core purpose and then cover boundary behavior. There is no filler or repetition of schema data.

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

    Completeness5/5

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

    For a two-parameter read tool with an output schema, the description supplies operation type, scope, read-only guarantee, and a key limitation (no runtime routed path). An agent has enough to invoke it correctly and interpret its results.

    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?

    The schema has 0% description coverage, so the description must compensate. It adds that the two sites must be exact and direct evidence is returned, but it never names fromSite/toSite or explains their expected format, leaving some meaning to be inferred from the parameter names.

    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 names a specific verb ('Read') and a specific resource ('bounded NetBox circuit and VPN evidence') connecting two exact sites. This clearly distinguishes it from sibling context/rack/device/power tools.

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

    Usage Guidelines4/5

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

    It communicates that the tool is for direct, exact site-to-site circuit/VPN evidence, not a runtime routed-path checker. It does not name sibling alternatives explicitly, but the scope and explicit non-claim give usable selection guidance.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

Enterprise MCP Kit MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

Enterprise MCP Kit MCP server – quality and maintenance score on Glama

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/landynsnipes/enterprise-mcp-kit'

If you have feedback or need assistance with the MCP directory API, please join our Discord server