Skip to main content
Glama

Manageprofiles

manageProfiles

Create, list, retrieve, update, or delete NextDNS profiles. Get their IDs for other tools to configure DNS settings, blocklists, and logs.

Instructions

Manage NextDNS profiles.

NextDNS profiles are named configurations that contain DNS settings, blocklists, analytics, and logs. Most other tools require a profile_id from this tool.

Operations: - list: Return all profiles the API key can access. - create: Create a new profile (requires name). - get: Retrieve a single profile (requires profile_id). - update: Rename a profile (requires profile_id and name). - delete: Remove a profile (requires profile_id).

Examples: - list: manageProfiles(operation="list") - create: manageProfiles(operation="create", name="Home Network") - get: manageProfiles(operation="get", profile_id="abc123")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
operationYes
profile_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.0.1

TDQS

A3.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden but barely addresses it. It implies mutation for create/update/delete but never states that delete is destructive or irreversible, whether cascading effects occur, or what permissions/API-key scope is required beyond an incidental mention of 'the API key can access'.

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 content is front-loaded with the resource overview, then a clean operation list, then examples. The examples are somewhat redundant with the operation list but do earn their place by showing parameter placement, so length is justified.

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 an output schema exists, return values need not be explained, and the per-operation parameter requirements are covered. The main gap is behavioral disclosure around the destructive delete operation, which the absent annotations leave unaddressed.

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, and it largely does: it maps each operation to its required inputs (name for create/update, profile_id for get/update/delete) and shows them in examples. Only the exact format/constraints of profile_id and name are left unspecified.

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 resource (NextDNS profiles) with a concrete verb (manage) and immediately enumerates the exact operations available (list, create, get, update, delete). It also distinguishes itself from siblings by noting other tools require a profile_id from this one, so an agent can place it in the workflow.

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?

Each operation is scoped with its required parameters and concrete invocation examples, and the note that 'most other tools require a profile_id from this tool' gives real when-to-use context. However, there is no guidance on when NOT to use it or on alternatives for profile-like operations, so it falls short of explicit exclusions.

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