Skip to main content
Glama
sanyambassi

thales-cdsp-csm-mcp-server

by sanyambassi

Thales CSM MCP Server

Simple MCP server for Thales CipherTrust Secrets Management, powered by Akeyless.

šŸŽ¬ Demo Videos

šŸ“¹ Part I: Usage & Functionality - Watch on YouTube

This video demonstrates:

  • Setting up Cursor AI integration

  • Creating and managing secrets and DFC Keys through AI chat

  • Security compliance workflows

  • Example prompts and functionality

šŸ“¹ Part II: Deployment & Installation - Watch on YouTube

This video covers:

  • Step-by-step installation process

  • Configuration and setup

  • Deployment options

Related MCP server: @1claw/mcp

šŸŽÆ Key Features

Intelligent App Development & Security Migration

The server includes a powerful prompt that automatically determines whether you want to:

  • Create a NEW app with built-in CipherTrust integration

  • Secure an EXISTING app by migrating hardcoded secrets to CipherTrust

For New Apps:

  • Generates complete Python implementations with CipherTrust integration

  • Uses the get_api_reference tool for native API integration

  • Provides production-ready code with proper error handling

For Existing Apps:

  • Scans codebase for hardcoded secrets using intelligent detection

  • Categorizes secrets by type (key-value pairs vs standalone)

  • Uses manage_secrets MCP tool to create CipherTrust secrets

  • Generates migration reports and updated code

  • Provides testing and validation instructions

Secret Type Classification:

  • Key-Value Pairs/JSON format: AWS credentials, database configs, OAuth tokens

  • Standalone Secrets (Text format): Single passwords, individual tokens, certificates

šŸ“‹ Prerequisites

Before you begin, ensure you have the following installed on your system:

  • Python 3.8+: Required for running the MCP server

  • uv: Modern Python package manager (recommended) or pip

  • git: For cloning the repository

  • dotenv: Environment variable management

  • fastmcp: MCP server framework

  • Thales CipherTrust Manager access

  • Valid Akeyless credentials

Installing Prerequisites

Python

# Check if Python is installed
python --version
# or
python3 --version

# Install Python (Ubuntu/Debian)
sudo apt update && sudo apt install python3 python3-pip

# Install Python (macOS)
brew install python

# Install Python (Windows)
# Download from https://python.org
# Install uv
pip install uv

# Verify installation
uv --version

git

# Check if git is installed
git --version

# Install git (Ubuntu/Debian)
sudo apt update && sudo apt install git

# Install git (macOS)
brew install git

# Install git (Windows)
# Download from https://git-scm.com

dotenv

# Check if python-dotenv is installed
python -c "import dotenv; print('dotenv available')"

# Install python-dotenv
pip install python-dotenv

# Verify installation
python -c "import dotenv; print(f'dotenv version: {dotenv.__version__}')"

fastmcp

# Check if fastmcp is installed
python -c "import fastmcp; print('fastmcp available')"

# Install fastmcp
pip install fastmcp

# Verify installation
python -c "import fastmcp; print(f'fastmcp version: {fastmcp.__version__}')"

šŸš€ What this MCP server features

  • Secrets Management: Create, read, update, delete secrets

  • DFC Key Management: DFC encryption keys (AES, RSA)

  • Account Management: Get Akeyless account details

  • Analytics: Fetch analytics data

  • Authentication Methods: Manage Authentication Methods

  • App Development & Security: Intelligent app creation and secret migration

  • Roles: Manage Roles

  • Targets: Manage Targets

  • Security: Guidelines and best practices

  • MCP Protocol: Model Context Protocol compliance

⚔ Quick Start

1. Install

Option A: Using pip (Traditional)

git clone https://github.com/sanyambassi/thales-cdsp-csm-mcp-server
cd thales-cdsp-csm-mcp-server
pip install -r requirements.txt
# Install uv if you don't have it
pip install uv

# Clone and setup
git clone https://github.com/sanyambassi/thales-cdsp-csm-mcp-server
cd thales-cdsp-csm-mcp-server

# Install dependencies (creates .venv automatically)
uv sync

2. Configure

Create .env file:

AKEYLESS_ACCESS_ID=your_access_id
AKEYLESS_ACCESS_KEY=your_access_key
AKEYLESS_API_URL=https://your-ciphertrust-manager/akeyless-api/v2
LOG_LEVEL=INFO
AKEYLESS_VERIFY_SSL=false

3. Run

Using pip (Traditional)

# stdio mode
python main.py

# HTTP mode 
python main.py --transport streamable-http --host localhost --port 8000
# stdio mode
uv run python main.py

# HTTP mode 
uv run python main.py --transport streamable-http --host localhost --port 8000

šŸ› ļø Available Tools

Tool

Description

manage_secrets

Create static secrets, get static secret values, update, delete secrets (static, dynamic, rotated) with type filtering and dynamic secret creation

manage_dfc_keys

Manage encryption keys

manage_auth_methods

Authentication and access control

manage_rotation

Secret rotation policies

manage_customer_fragments

Enhanced security features

security_guidelines

Security best practices

manage_roles

List and get role information

manage_targets

List, get, and create targets

manage_analytics

Get analytics and monitoring data

manage_account

Get account settings and licensing

get_api_reference

Get API reference for native Akeyless integrations (generic workflows + S3 example)

šŸ” Test It

# Run tests
python tests/run_tests.py
python.exe tests\test_mcp_protocol.py

# Test health endpoint (HTTP mode)
curl http://localhost:8000/health

šŸ“š Documentation

šŸŽÆ Use Cases

  • AI Assistants: Claude Desktop, Cursor AI

  • Web Applications: REST API integration

  • Automation: CI/CD, scripts, tools

  • Enterprise: Secrets management, compliance

šŸ¤– AI Assistant Integration

Claude Desktop

{
  "mcpServers": {
    "thales-csm": {
      "command": "python",
      "args": ["main.py", "--transport", "stdio"],
      "env": {
        "AKEYLESS_ACCESS_ID": "your_access_id_here",
        "AKEYLESS_ACCESS_KEY": "your_access_key_here",
        "AKEYLESS_API_URL": "https://your-ciphertrust-manager/akeyless-api/v2",
        "LOG_LEVEL": "INFO"
      }
    }
  }
}

Cursor AI

{
  "mcpServers": {
    "thales-csm": {
      "command": "python",
      "args": ["main.py", "--transport", "stdio"],
      "env": {
        "AKEYLESS_ACCESS_ID": "your_access_id_here",
        "AKEYLESS_ACCESS_KEY": "your_access_key_here",
        "AKEYLESS_API_URL": "https://your-ciphertrust-manager/akeyless-api/v2",
        "LOG_LEVEL": "INFO"
      }
    }
  }
}

Configuration Parameters

  • env: Environment variables for Akeyless authentication and logging

  • command: Python executable to run the server

  • args: Command line arguments for the server

āš ļø Important Notes

  • Full Path Required: args must include the full absolute path to main.py

  • Windows Paths: Use double backslashes \\ in Windows paths (e.g., C:\\thales-cdsp-csm-mcp-server\\main.py)

  • Unix Paths: Use forward slashes / in Unix/Linux paths (e.g., /home/user/thales-cdsp-csm-mcp-server/main.py)

Configuration Templates

šŸ¤ Support

šŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

Available Tools

12 tools
get_api_referenceA

API REFERENCE TOOL - Generate production-ready code examples and integration patterns

SUPPORTED ENDPOINTS: • workflow: Complete integration patterns and best practices • auth: Authentication flows and token management • create-secret: Secret creation and management APIs • get-secret-value: Secret retrieval and access patterns • list-items: Item listing and discovery APIs • delete-item: Item deletion and cleanup operations • list-roles: Role management and access control • list-targets: Target management and configuration

INTEGRATION FEATURES: • Production-ready code examples with authentication • Complete error handling and retry logic • Best practices for secure integration patterns • Multi-language support (Python, JavaScript, etc.) • Token management and session handling

USE CASES: • Building custom applications and integrations • CI/CD pipeline integration and automation • Microservice authentication and configuration • Native client development and SDK creation • Production system integration and deployment

Example: Generate complete Python client code for secret management

ParametersJSON Schema
NameRequiredDescriptionDefault
languageNoTarget programming language for code examples and implementation detailspython
api_endpointYesAPI endpoint or integration pattern to get reference for. SUPPORTED: 'workflow' (complete integration patterns), 'auth' (authentication flows), 'create-secret' (secret creation), 'get-secret-value' (secret retrieval), 'list-items' (item listing), 'delete-item' (item deletion), 'list-roles' (role management), 'list-targets' (target management)
include_authNoInclude complete authentication workflow and token management examples
include_error_handlingNoInclude production-ready error handling, retry logic, and exception management

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the transparency burden. It discloses several behavioral aspects: generates code with authentication, error handling, retry logic, token management, and multi-language support. It implies a read-only reference nature but does not explicitly state there are no side effects.

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 well-structured with clear sections for supported endpoints, integration features, use cases, and an example. While somewhat verbose, every section serves a purpose and the content is organized with bullet points, making it easy to scan.

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?

Given the rich output schema and 100% parameter coverage, the description thoroughly covers purpose, supported endpoints, generated features, and usage scenarios. It is complete for an AI agent to understand how and when to use the tool effectively.

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%, with detailed parameter descriptions for language, api_endpoint, include_auth, and include_error_handling. The tool description adds context by elaborating on endpoint-specific integration patterns, but this complements rather than significantly extends the schema. Baseline of 3 is appropriate.

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 tool's purpose: generate production-ready code examples and integration patterns. It lists supported endpoints and integration features, distinguishing it from sibling manage_* tools that handle resource management rather than API reference.

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 provides a dedicated 'USE CASES' section with scenarios like building custom applications, CI/CD integration, microservice auth, and SDK development. It gives clear context for when to use the tool but does not explicitly state when not to use it or name alternatives.

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

manage_accountA

ACCOUNT ADMINISTRATION TOOL - Manage organizational settings and governance

SUPPORTED ACTIONS: • get: Retrieve complete account configuration, licensing details, and system-wide policies

ACCOUNT INFORMATION PROVIDED: • Organizational details and company profile • Licensing and subscription tier information • Service tier, SLA level, and feature availability • Usage quotas, capacity limits, and billing details • System configuration and security policies • Governance, compliance, and audit settings • Multi-tenant configuration and access controls

USE CASES: • Account setup and initial configuration • Compliance and audit preparation • License management and planning • Security policy review and updates • Service tier evaluation and upgrades • Multi-tenant administration

Example: Review account licensing and compliance configuration

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoReturn structured JSON format for administrative reporting and configuration management. Use TRUE for automated compliance reporting and system integration
actionYesAccount administration action to perform. SUPPORTED ACTIONS: 'get' (retrieve complete account configuration, licensing details, organizational settings, and system-wide policies)
uid_tokenNoUniversal identity authentication token. Only required when using universal_identity authentication instead of standard API key authentication

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior3/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 describes the categories of information returned, but does not explicitly state that the 'get' action is read-only with no side effects, nor does it mention authentication requirements or potential errors. The verb 'get' implies safety, but explicit disclosure is missing.

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

Conciseness3/5

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

The description is well-structured with sections and bullet points, but is somewhat verbose. The 'USE CASES' list partially overlaps with the 'ACCOUNT INFORMATION PROVIDED' list, and the opening line repeats the tool name. It could be trimmed to be more concise without losing value.

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?

For a single-action tool with an output schema, the description comprehensively covers the information returned and common use cases. The only notable gap is the missing explicit read-only disclosure, but the 'get' action and detailed data categories sufficiently orient the agent.

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% for all three parameters, so the baseline applies. The description adds a usage example ('review account licensing and compliance configuration') but does not provide further parameter semantics beyond the schema. The schema descriptions for 'json' and 'uid_token' already give clear meaning.

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 identifies the tool as an account administration tool with an explicit supported action 'get' and enumerates the resource scope (organizational settings, licensing, policies, etc.). This distinguishes it from sibling admin tools that focus on analytics, auth, roles, etc.

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 lists concrete use cases (account setup, compliance, license management, security policy review, service tier evaluation, multi-tenant admin) that signal when to invoke this tool. It does not explicitly name alternatives, but the context is clear enough for an agent to select it appropriately.

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

manage_analyticsA

ANALYTICS & MONITORING TOOL - Comprehensive infrastructure monitoring and reporting

SUPPORTED ACTIONS: • get: Retrieve comprehensive monitoring data, usage statistics, and performance metrics

ANALYTICS COVERAGE: • Usage statistics and item counts by type (Secrets, Targets, Roles, Keys) • Geographic distribution of access requests and client patterns • Security risk analysis and certificate expiry tracking • Authentication method usage and access control compliance • Multi-region usage distribution and product-specific metrics • Resource utilization, capacity planning, and audit summaries

FILTERING OPTIONS: • Filter by item type (Targets, Static Secrets, Dynamic Secrets, DFC Keys, etc.) • Filter by risk level (Expired, Healthy, Expiring Soon certificates) • Filter by product component (Secrets Management, Advanced Data Protection, etc.)

USE CASES: • Security operations center (SOC) dashboards • Compliance reporting and audit preparation • Capacity planning and resource optimization • Risk assessment and vulnerability management • Executive reporting and KPI tracking

Example: Get security risk analysis for certificate expiry management

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoReturn structured JSON format for programmatic analysis and dashboard integration. Use TRUE for automated reporting and data processing
actionYesAnalytics and monitoring action to perform. SUPPORTED ACTIONS: 'get' (retrieve comprehensive monitoring data, usage statistics, and performance metrics for the entire infrastructure)
uid_tokenNoUniversal identity authentication token. Only required when using universal_identity authentication instead of standard API key authentication
filter_by_riskNoFilter certificate and security risk analysis. OPTIONS: 'Expired' (certificates past expiry), 'Healthy' (certificates within validity), 'Expiring Soon' (certificates near expiry)
filter_by_typeNoFocus on specific item categories. SUPPORTED TYPES: 'Targets', 'Static Secrets', 'Dynamic Secrets', 'DFC Key', 'Roles', 'Auth Methods', 'Rotated Secrets', 'Certificates'. Use exact match for filtering
filter_by_productNoFilter by Akeyless product components. OPTIONS: 'sm' (Secrets Management), 'adp' (Advanced Data Protection), 'sra' (Secure Remote Access). Essential for multi-product environments

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It describes what data is retrieved and the filtering options, but it does not explicitly state that the tool is read-only or non-mutating, nor does it mention pagination, rate limits, or error behavior. The 'get' action implies a safe read operation, but this is not explicitly disclosed.

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 well-structured with clear sections (SUPPORTED ACTIONS, ANALYTICS COVERAGE, FILTERING OPTIONS, USE CASES, Example). While somewhat verbose, each section provides useful information and the example adds practical clarity. No significant redundancy.

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 tool's complexity (6 params, output schema), the description covers all major elements: supported actions, data coverage, filtering, use cases, and a usage example. It doesn't explain whether filters can be combined or specify output format, but the output schema is available. This is sufficient for tool selection and basic usage.

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 coverage is 100%, so baseline is 3. The description adds value by elaborating on filter options with examples, noting that filter_by_type uses exact match, and that filter_by_product is essential for multi-product environments. It also explains the 'get' action in context, going beyond the schema descriptions.

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 identifies 'ANALYTICS & MONITORING TOOL' and defines the supported action 'get' as retrieving comprehensive monitoring data, usage statistics, and performance metrics. This distinguishes it from sibling management tools by focusing on analytics and reporting rather than resource management.

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 'USE CASES' section lists SOC dashboards, compliance reporting, capacity planning, risk assessment, and executive reporting, providing clear when-to-use context. It doesn't explicitly exclude alternatives but the analytics focus is unique among the sibling tools.

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

manage_auth_methodsA

AUTHENTICATION METHODS MANAGEMENT TOOL - Create, manage, and secure authentication methods

SUPPORTED ACTIONS: • create_api_key: Create API key authentication methods with IP restrictions and expiration • create_email: Create email-based authentication methods with MFA support • list: List all authentication methods with filtering and pagination • get: Retrieve detailed authentication method configuration and status • update: Modify authentication method properties, credentials, and settings • delete: Delete individual authentication methods with proper cleanup • delete_auth_methods: Bulk delete authentication methods within a specific path

SECURITY FEATURES: • IP address restrictions and CIDR whitelisting • Access expiration and JWT TTL management • Multi-factor authentication (MFA) support • Audit logging and compliance tracking • Delete protection and access control

Example: Create a secure API key for application authentication

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoSet output format to JSON
nameNoAuthentication method name (required for create_api_key, update, delete, get)
pathNoPath for bulk operations (required for delete_auth_methods)
tagsNoList of tags attached to this object
typeNoAuth method types to filter by [api_key, azure_ad, oauth2/jwt, saml2, ldap, aws_iam, oidc, universal_identity, gcp, k8s, cert]
emailNoEmail address for email authentication method
actionYesAuthentication method management action to perform. SUPPORTED ACTIONS: 'create_api_key' (create API key authentication), 'create_email' (create email authentication), 'list' (list all authentication methods), 'get' (retrieve specific auth method details), 'update' (modify auth method properties), 'delete' (delete individual auth method), 'delete_auth_methods' (bulk delete auth methods by path)
filterNoFilter by auth method name or part of it
jwt_ttlNoJWT TTL
mfa_typeNoEnable two-factor-authentication via [email/auth app]email
new_nameNoNew name for the authentication method (for update action)
bound_ipsNoCIDR whitelist for IP restrictions
enable_mfaNoEnable MFA for this authentication method [True/False]
descriptionNoAuth Method description
gw_bound_ipsNoCIDR whitelist for Gateway IP restrictions
product_typeNoProduct type for auth method [sm, sra, pm, dp, ca]
accessibilityNoAccessibility levelregular
access_expiresNoAccess expiration date in Unix timestamp (0 for no expiry)
force_sub_claimsNoEnforce role-association must include sub claims
pagination_tokenNoNext page reference
audit_logs_claimsNoSubclaims to include in audit logs
delete_protectionNoProtection from accidental deletion [true/false]
expiration_event_inNoDays before expiration to be notified

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior3/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 discloses destructive actions (delete, delete_auth_methods) and mentions delete protection, access control, and audit logging. However, it does not specify permission requirements or whether deletions are reversible, leaving some behavioral ambiguity.

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 well-structured with clear sections for supported actions and security features, and it is front-loaded with the tool's purpose. It is somewhat verbose but appropriate for a complex multi-action tool.

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 tool's complexity (23 parameters, multiple actions) and the presence of an output schema, the description covers the main actions, security features, and an example. It lacks explicit prerequisites or error handling, but it is sufficient for most usage scenarios.

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%, so the baseline is 3. The description adds context by mapping actions to the 'action' parameter and highlighting security-related parameters, but it does not explain each parameter in 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 'AUTHENTICATION METHODS MANAGEMENT TOOL - Create, manage, and secure authentication methods' and enumerates all supported actions (create_api_key, create_email, list, get, update, delete, delete_auth_methods), making purpose explicit and distinguishing it from sibling tools like manage_roles or manage_secrets.

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 provides clear context through SUPPORTED ACTIONS and SECURITY FEATURES, but it does not explicitly state when not to use this tool or name alternative tools. However, the tool's scope is well-defined, so an agent can infer when to use it.

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

manage_customer_fragmentsA

CUSTOMER FRAGMENT MANAGEMENT TOOL - Manage customer fragment encryption and security

SUPPORTED ACTIONS: • list: List customer fragments with path filtering and pattern matching • export: Export customer fragments with optional JSON format • download: Download customer fragments (alias for export action)

SECURITY FEATURES: • Customer fragment encryption for enhanced security • Access control and audit trails • Enterprise-grade fragment management • Compliance and security reporting

USE CASES: • Customer fragment inventory and management • Security compliance and audit preparation • Fragment backup and export operations • Enhanced encryption key management

Example: List and export customer fragments for security audit

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoSet output format to JSON (for export action)
pathNoPath to list fragments from (for list action)
actionYesCustomer fragment management action to perform. SUPPORTED ACTIONS: 'list' (list customer fragments with filtering), 'export' (export customer fragments), 'download' (download customer fragments - alias for export)
filter_byNoFilter fragments by pattern (for list action)

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the supported actions and mentions security features like encryption and audit trails. It also clarifies that 'download' is an alias for 'export'. However, it does not detail side effects, permissions, whether actions are read-only or mutating, or error behaviors. The description is partially transparent but lacks depth.

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

Conciseness2/5

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

The description is overly verbose and filled with marketing fluff like 'ENTERPRISE-GRADE', 'COMPLIANCE AND SECURITY REPORTING', and redundant phrasing. The 'USE CASES' and 'SECURITY FEATURES' sections contain aspirational statements that do not help an AI agent invoke the tool. It could be reduced to a few concise sentences without losing essential information.

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 that an output schema exists and parameters are fully covered, the description does not need to explain return values. It covers the main actions, use cases, and security context, which is sufficient for an agent to select the tool for tasks like audit or backup. It lacks some behavioral details like permissions, but overall it is complete enough for a tool of this complexity.

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%, so the baseline is 3. The description does not add significant meaning beyond the schema; it restates that 'list' uses path/filter_by and 'export' uses json. The action parameter description in the schema already covers the action details. Thus, the description adds minimal value beyond structured data.

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

Purpose4/5

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

The description clearly states it manages customer fragments, with specific actions (list, export, download) and a resource focus. The verb 'Manage' is somewhat generic, but the action list and context make the purpose clear. It does not explicitly differentiate from sibling tools like manage_dfc_keys or manage_secrets, but the 'customer fragments' resource is distinct enough.

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 'USE CASES' section provides clear context for when to use this tool (e.g., inventory, audit, backup). It does not explicitly state when not to use it or name alternatives, so it misses the full 5-level guidance. However, the use cases are specific enough to guide an agent.

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

manage_dfc_keysA

DFC KEY MANAGEMENT TOOL - Advanced encryption key management and lifecycle

SUPPORTED ACTIONS: • create: Create new DFC keys with encryption algorithms (AES128GCM, AES256GCM, RSA2048, etc.) • update: Modify DFC key properties, tags, and metadata • delete: Delete DFC keys with proper cleanup • list: List DFC keys in directory with filtering • set_state: Enable/disable DFC keys for access control • rotate: Rotate DFC keys on demand with new certificates and key data

ADVANCED FEATURES: • Auto-rotation with configurable intervals (7-365 days) • Customer fragment encryption for enhanced security • Self-signed certificate generation with X.509 support • Split levels (3 or 4 fragments) for key distribution • Expiration and rotation event notifications • Comprehensive metadata and configuration support

SECURITY CAPABILITIES: • Enterprise-grade key management with audit trails • Access control and delete protection • Customer fragment integration • Certificate lifecycle management • Compliance and governance reporting

Example: Create an AES256GCM DFC key with auto-rotation for application encryption

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoSet output format to JSON
nameNoDFC key name/path (required for create, update, delete, set_state)
pathNoPath to list keys from (for list action)
tagsNoList of tags attached to this DFC key
actionYesDFC key management action to perform. SUPPORTED ACTIONS: 'create' (create new DFC keys with encryption algorithms), 'update' (modify DFC key properties), 'delete' (delete DFC keys), 'list' (list DFC keys in directory), 'set_state' (enable/disable DFC keys), 'rotate' (rotate DFC keys on demand)
rm_tagsNoTags to remove (for update)
versionNoVersion to delete (-1 for all versions)
add_tagsNoTags to add (for update)
key_typeNošŸ” ENCRYPTION KEY MANAGEMENT: Encryption algorithm (AES128GCM, AES256GCM, RSA2048, etc.) - choose based on your security requirementsAES256GCM
metadataNoAdditional metadata in JSON format
new_nameNoNew name for the key (for update)
filter_byNoFilter keys by pattern (for list action)
auto_rotateNoEnable auto-rotation (None = use API default, 'true'/'false')
descriptionNoHuman-readable description of the key
split_levelNoNumber of fragments (3 or 4)
max_versionsNoMaximum number of versions (for update)
new_key_dataNoNew base64 encoded value for classic keys (bring-your-own-key)
accessibilityNoAccessibility levelregular
desired_stateNoDesired state: 'Enabled' or 'Disabled' (capitalized, for set_state)
conf_file_dataNoConfiguration file data
delete_in_daysNoSoft delete retention period in days
protection_keyNoCustomer fragment ID (full UUID or partial - system automatically searches for full match)
certificate_ttlNoCertificate TTL in days (1-365)
delete_protectionNoProtection from accidental deletion
new_cert_pem_dataNoNew PEM encoded certificate for classic keys (bring-your-own-key)
rotation_event_inNoDays before rotation to notify
rotation_intervalNoDays between rotations (7-365, only used if auto_rotate is 'true')
certificate_formatNoCertificate format (PEM, DER, etc.)
delete_immediatelyNoDelete immediately (bypass soft delete)
certificate_countryNoCertificate country code
expiration_event_inNoDays before expiration to notify
certificate_localityNoCertificate locality/city
certificate_provinceNoCertificate province/state
certificate_common_nameNoCertificate common name
certificate_digest_algoNoCertificate digest algorithm (for RSA keys, only 'sha256' is supported)
certificate_organizationNoCertificate organization
generate_self_signed_certificateNoWhether to generate a self signed certificate with the key. If set, certificate_ttl must be provided.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior3/5

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

No annotations exist, so the description carries the transparency burden. It discloses several behavioral traits like auto-rotation, soft delete, delete protection, and audit trails, but does not explain side effects (e.g., irreversibility of delete, access-control impact of set_state) or required permissions.

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

Conciseness3/5

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

Structured into clear sections and bullet points, but it is verbose with marketing-like phrases ('Enterprise-grade key management with audit trails', 'Compliance and governance reporting') and all-caps headings that add noise. The supported actions list partially duplicates the action parameter's schema description.

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?

Despite 37 parameters, the schema has 100% coverage and an output schema exists, so the description need not explain return values. The description covers major capabilities (auto-rotation, self-signed certificates, split levels, notification events) adequately, giving an agent enough context to operate the tool.

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 100%, so baseline is 3. The description adds value by giving concrete algorithm examples (AES128GCM, AES256GCM, RSA2048), rotation interval range (7-365 days), and clarifying concepts like split levels and customer fragments, which supplement 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?

Description states it is a 'DFC KEY MANAGEMENT TOOL' and enumerates concrete actions (create, update, delete, list, set_state, rotate), clearly specifying the resource (DFC keys) and the lifecycle scope. This distinguishes it from sibling manage_* tools like manage_secrets or manage_roles.

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 provides clear context for when to use the tool: for DFC key lifecycle management, with a concrete example and list of supported actions. It does not explicitly mention alternatives or when-not-to-use, but the title and action list make the scope obvious.

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

manage_gatewaysB

GATEWAY MANAGEMENT TOOL - Monitor and manage gateway infrastructure

SUPPORTED ACTIONS: • list: List available gateways with detailed information and filtering

GATEWAY INFORMATION PROVIDED: • Gateway configuration and status • Connection details and endpoints • Performance metrics and health status • Access control and security settings • Integration and routing information

USE CASES: • Gateway infrastructure monitoring • Connection troubleshooting and diagnostics • Performance analysis and optimization • Security configuration review • Gateway inventory and management

Example: List all gateways to monitor infrastructure health

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoSet output format to JSON
pathNoPath to list gateways from (for list action)
actionYesGateway management action to perform. SUPPORTED ACTIONS: 'list' (list available gateways with detailed information and filtering)
filter_byNoFilter gateways by pattern (for list action)

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the burden of behavioral disclosure. It mentions 'manage gateway infrastructure' but the only supported action is 'list', which is a significant discrepancy. The description does not explicitly state that the tool is read-only, nor does it disclose potential side effects, authentication needs, or limitations beyond the supported action. The listed 'GATEWAY INFORMATION PROVIDED' adds some value, but the internal contradiction between 'manage' and 'list' undermines transparency.

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

Conciseness3/5

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

The description uses all-caps headings and bullet lists, making it structured and easy to scan, but it is longer than necessary. Some content, such as the 'GATEWAY INFORMATION PROVIDED' and 'USE CASES' sections, is informative, but phrases like 'GATEWAY MANAGEMENT TOOL' and the repeated references to 'list' and 'manage' add redundancy. It is reasonably concise for the amount of context it provides, but not exceptionally so.

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, so return value details are not required from the description. The description covers use cases, an example, and the supported action, which is adequate for a simple list tool. However, the tool name 'manage_gateways' suggests broader capabilities, and the description does not clarify why only 'list' is available or whether the tool is read-only. Without annotations, the completeness is reasonable but somewhat incomplete for a tool with a misleading name.

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 schema already documents each parameter (action, path, filter_by, json) with descriptive text. The description adds only a general mention of 'filtering' and 'list action', which does not meaningfully go beyond the schema. According to the baseline for high schema coverage, a score of 3 is appropriate; the description does not hinder understanding but does not enhance it.

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

Purpose4/5

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

The description clearly states the primary action 'list' with the specific resource 'available gateways' and mentions filtering, which distinguishes it from sibling tools. However, the opening line 'Monitor and manage gateway infrastructure' overstates the scope since the only supported action is list, creating mild ambiguity about the tool's actual purpose.

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 provides explicit use cases such as 'Gateway infrastructure monitoring', 'Connection troubleshooting', and 'Performance analysis', giving clear context for when to use the tool. It does not explicitly mention alternatives or exclusions, but the use cases are specific enough to guide appropriate usage, and the sibling tools are largely resource-specific rather than direct alternatives.

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

manage_rolesA

ROLE MANAGEMENT TOOL - Discover and analyze role-based access control

SUPPORTED ACTIONS: • list: Discover all roles with advanced filtering and pagination • get: Retrieve comprehensive role details including permissions, access rules, and policies

ROLE INFORMATION PROVIDED: • Permission sets and access rules • Associated policies and restrictions • User/group assignments and mappings • Resource access configurations • Audit and compliance information

USE CASES: • Security audits and compliance reporting • Access permission troubleshooting • Role-based access control planning • Identity and access management (IAM) integration • Permission inheritance analysis

Example: Check what permissions the 'database-admin' role has

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoReturn structured JSON output instead of human-readable format. Use TRUE for programmatic processing or when integrating with other tools
nameNoExact role name or path (REQUIRED for 'get' action). Examples: 'admin-role', '/production/database-admin', 'read-only-secrets'
actionYesRole management action to perform. SUPPORTED ACTIONS: 'list' (discover all roles with filtering and pagination), 'get' (retrieve detailed role information including permissions, access rules, and policies)
filterNoPattern to filter role names (for 'list' action). Supports wildcards and partial matches. Examples: 'admin*', '*database*', 'prod-'
uid_tokenNoUniversal identity authentication token. Only required when using universal_identity authentication method instead of API key authentication
pagination_tokenNoContinuation token for retrieving next page of results when listing large numbers of roles. Returned in previous response's metadata

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It discloses read-only behavior via 'Discover and analyze' and the list/get actions, and details the information returned (permissions, access rules, policies). It does not discuss side effects or auth requirements, but for a list/get tool, this is adequate.

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 well-structured with clear sections for actions, provided information, and use cases. It is a bit longer than necessary, but every section adds value, especially the example. It is front-loaded with the tool's purpose and supported actions.

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 read-only role management tool with two actions, the description is complete: it lists actions, role information categories, use cases, and an example. It fully prepares the agent to use the tool correctly, even without an output schema.

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 input schema has 100% description coverage with detailed parameter docs (e.g., name required for get, filter wildcards). The description adds some context by reinforcing role info and providing an example, but it doesn't go beyond the schema's parameter semantics, so baseline 3 is appropriate.

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 tool's purpose: 'Discover and analyze role-based access control' with two specific actions, list and get. This distinguishes it from sibling manage_* tools by focusing on RBAC discovery and analysis.

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 includes a dedicated USE CASES section and an example, providing clear context for when to use the tool. It does not explicitly mention when not to use it or name alternatives, but the use cases and example are enough for practical guidance.

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

manage_rotation_settingsC

ROTATION SETTINGS MANAGEMENT TOOL - Automate secret and key rotation for security compliance

SUPPORTED ACTIONS: • set_rotation: Set rotation settings for secrets and keys with scheduling • update_settings: Update existing rotation configurations and parameters • list_rotation: List items with rotation settings and status • get_rotation_status: Get detailed rotation status and history information

ROTATION FEATURES: • Auto-rotation with configurable intervals (7-365 days) • Rotation event notifications and scheduling • Advanced rotation windows and cron-based scheduling • Rotate after disconnect settings for security • Comprehensive rotation status tracking and reporting

SECURITY BENEFITS: • Automated security through intelligent rotation scheduling • Enterprise-grade rotation with access control and audit trails • Compliance with security policies and regulations • Reduced manual intervention and human error • Proactive security through regular credential updates

Example: Set up automated rotation for database credentials every 30 days

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoSet output format to JSON
pathNoPath to list rotation settings from (for list_rotation action)
actionYesRotation settings management action to perform. SUPPORTED ACTIONS: 'set_rotation' (set rotation settings for secrets and keys), 'update_settings' (update existing rotation configurations), 'list_rotation' (list items with rotation settings), 'get_rotation_status' (get detailed rotation status information)
filter_byNoFilter items by pattern (for list_rotation action)
item_nameNoItem name to manage rotation for (required for set_rotation, update_settings, get_rotation_status)
auto_rotateNoEnable auto-rotation
rotation_windowNoRotation window (e.g., '30d', '1w')
rotation_event_inNoRotation event notifications
rotation_intervalNoRotation interval in days (7-365)
rotation_scheduleNoRotation schedule (cron format)
rotate_after_disconnectNoRotate after disconnect setting

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full disclosure burden. It mentions configurable intervals, cron scheduling, and notifications, but omits critical behavioral traits such as whether updates are irreversible, permissions required, or if rotation occurs immediately. The 'security benefits' section is marketing language rather than operational transparency.

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

Conciseness2/5

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

The description is verbose, padded with a 'SECURITY BENEFITS' section that adds little operational value. It could convey the same core information in half the length. The structure is organized, but all-caps formatting and repetitive marketing phrases hurt readability.

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

Completeness2/5

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

This is a complex tool with 11 parameters and 4 actions, yet the description does not specify which parameters are required for each action or explain parameter interplays like rotation_interval vs rotation_schedule. The output schema exists, but the agent needs more action-level guidance to invoke correctly; the example is illustrative but insufficient.

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 coverage is 100% for all 11 parameters, so the baseline is 3. The description adds some context by grouping features like 'Auto-rotation with configurable intervals (7-365 days)' which maps to rotation_interval, but it largely duplicates schema descriptions. It does not clarify action-specific parameter dependencies.

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

Purpose4/5

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

The description clearly identifies the tool as a rotation settings manager for secrets and keys, enumerating four supported actions (set_rotation, update_settings, list_rotation, get_rotation_status). It differentiates itself from sibling tools by focusing specifically on rotation rather than general secret management, though it does not explicitly name alternatives.

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 is implied through the listed actions and an example (setting rotation for database credentials every 30 days), giving some context. However, there is no explicit guidance on when to use this tool versus manage_secrets or other siblings, nor any exclusions or prerequisites.

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

manage_secretsB

SECRETS MANAGEMENT TOOL - Create, retrieve, update, and delete secrets

SUPPORTED ACTIONS: • create_static_secret: Create text/JSON secrets with metadata • get_static_secret_value: Retrieve secret values securely
• update: Modify secret properties and values • delete: Delete individual secrets (smart detection) • delete_items: Bulk delete multiple secrets or directories • list: List secrets in directory with type filtering • list_dynamic_secrets: List all dynamic secrets globally • create_dynamic_secret_ldap: Create LDAP dynamic secrets • create_dynamic_secret_mysql: Create MySQL dynamic secrets • create_dynamic_secret_mongodb: Create MongoDB dynamic secrets • list_shared_items: List shared secrets and items

DELETE OPERATIONS: • Individual: delete(name="/secret1") • Multiple: delete_items(items=["/secret1", "/secret2"]) • Directory: delete_items(path="/directory/")

Example: Create a database password secret

ParametersJSON Schema
NameRequiredDescriptionDefault
sslNoEnable/Disable SSL for MySQL dynamic secrets
ttlNoTime to live in seconds (for dynamic secrets)
jsonNoSet output format to JSON
nameNoSecret/directory name/path (required for create_static_secret, get_static_secret_value, update, delete)
pathNoPath to list secrets from (for list action only - not used for list_dynamic_secrets)
tagsNoTags to attach to the dynamic secret
itemsNoList of item names to delete (for bulk delete). Must be an array of strings, e.g., ['/item1', '/item2']
valueNoSecret value (required for create_static_secret, optional for update)
actionYesSecret management action to perform. SUPPORTED ACTIONS: 'create_static_secret' (create text/JSON secrets), 'get_static_secret_value' (retrieve secret values), 'update' (modify secret properties), 'delete' (smart delete individual items), 'delete_items' (bulk delete multiple items or directories), 'list' (list secrets in directory with type filtering), 'list_dynamic_secrets' (list all dynamic secrets globally), 'create_dynamic_secret_ldap' (create LDAP dynamic secrets), 'create_dynamic_secret_mysql' (create MySQL dynamic secrets), 'create_dynamic_secret_mongodb' (create MongoDB dynamic secrets), 'list_shared_items' (list shared secrets/items)
formatNoSecret format: 'text', 'json', 'key-value'text
bind_dnNoBind DN for LDAP dynamic secrets
user_dnNoUser DN for LDAP dynamic secrets
versionNoVersion to delete (-1 for all versions)
group_dnNoGroup DN for temporary user addition
ldap_urlNoLDAP Server URL for dynamic secrets
metadataNoAdditional metadata in JSON format
new_nameNoNew name for the secret (for update action)
passwordNoPassword for the secret
user_ttlNoUser TTL for dynamic secrets (default: 60m)60m
usernameNoUsername for the secret
filter_byNoFilter secrets by pattern (for list action only - not used for list_dynamic_secrets)
inject_urlNoWebsite context URLs
mysql_hostNoMySQL host for dynamic secrets127.0.0.1
mysql_portNoMySQL port for dynamic secrets3306
auto_rotateNoEnable auto-rotation (for rotated secrets)
descriptionNoSecret description
secret_typeNoSecret type: 'static' (for create_static_secret action only). For dynamic secrets, use specific actions: create_dynamic_secret_ldap/mysql/mongodbstatic
target_nameNoTarget name to associate with dynamic secret
change_eventNoTrigger an event when a secret value changed
custom_fieldNoCustom key-value pairs
dynamic_typeNoDynamic secret type (for dynamic secrets)
ldap_ca_certNoCA Certificate File Content for LDAP
max_versionsNoMaximum number of versions to keep
mongodb_nameNoMongoDB name for dynamic secrets
mysql_dbnameNoMySQL database name for dynamic secrets
secret_typesNoFilter by secret types within the specified directory. Options: ['static-secret', 'dynamic-secret', 'rotated-secret']. Leave empty to include all types. Note: This filters within the specified path, unlike 'list_dynamic_secrets' which searches globally.
accessibilityNoAccessibility levelregular
host_providerNoHost provider type [explicit/target]explicit
mongodb_rolesNoMongoDB roles (default: [])[]
provider_typeNoProvider type for LDAP dynamic secrets
db_server_nameNoServer name for certificate verification
delete_in_daysNoSoft delete retention period in days
mysql_passwordNoMySQL password for dynamic secrets
mysql_usernameNoMySQL username for dynamic secrets
protection_keyNoProtection key name
user_attributeNoUser attribute for LDAP dynamic secrets
multiline_valueNoWhether the provided value is multiline
password_lengthNoLength of password to be generated for dynamic secrets
ssl_certificateNoSSL connection certificate for MySQL
bind_dn_passwordNoBind DN Password for LDAP dynamic secrets
mongodb_passwordNoMongoDB server password
mongodb_usernameNoMongoDB server username
token_expirationNoToken expiration for LDAP dynamic secrets
delete_protectionNoProtection from accidental deletion [true/false]
external_usernameNoUse externally provided username [true/false]
mongodb_host_portNoMongoDB server host and port
rotation_intervalNoRotation interval in seconds (for rotated secrets)
secure_access_webNoEnable Web Secure Remote Access (for database dynamic secrets)
delete_immediatelyNoDelete immediately (bypass soft delete)
mongodb_server_uriNoMongoDB server URI
secure_access_hostNoTarget servers for connections
mongodb_custom_dataNoMongoDB custom data
mongodb_uri_optionsNoMongoDB server URI options
secure_access_delayNoDelay duration in seconds (0-120) after generating credentials
secure_access_enableNoEnable/Disable secure remote access [true/false]
db_server_certificatesNoDB server certificates for verification
mongodb_default_auth_dbNoMongoDB default authentication database
custom_username_templateNoCustom username template using go template syntax
fixed_user_claim_keynameNoKey-name of IdP claim for external usernameext_username
mongodb_atlas_project_idNoMongoDB Atlas project ID
mysql_creation_statementsNoMySQL creation statements
mysql_revocation_statementsNoMySQL revocation statements
mongodb_atlas_api_public_keyNoMongoDB Atlas API public key
producer_encryption_key_nameNoDynamic producer encryption key name
mongodb_atlas_api_private_keyNoMongoDB Atlas API private key
secure_access_certificate_issuerNoPath to SSH Certificate Issuer for Secure Access

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3/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 burden of behavioral disclosure. It offers minimal insight into side effects, permissions, reversibility, or safety risks (e.g., no warning that 'delete' might be permanent or require special privileges). The phrase 'smart detection' and 'securely retrieve' add some context, but the overall transparency is weak for a tool with such destructive operations.

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

Conciseness2/5

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

The description is verbose and largely redundant with the schema's action parameter description, which repeats the same action list verbatim. While the section headers (SUPPORTED ACTIONS, DELETE OPERATIONS) provide some structure, the content is not appropriately sized for the value it adds—many sentences simply restate what the schema already documents.

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 tool with 76 parameters and 11 actions, the description provides a comprehensive action list and some delete examples, but it lacks per-action parameter mapping, prerequisites, or warnings. The output schema exists, so return values are covered, but the description does not fully compensate for the tool's complexity in navigating correct usage.

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 description coverage is 100% and the individual parameter descriptions are detailed, so the baseline is 3. The tool description adds a few usage examples (e.g., 'delete(name="/secret1")') and groups delete-related parameters, but it does not systematically explain which action requires which parameters or add meaning beyond the schema.

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

Purpose4/5

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

The description clearly states 'Create, retrieve, update, and delete secrets' and lists all supported actions, making the tool's purpose unambiguous. However, it does not explicitly differentiate this tool from sibling tools like manage_auth_methods or manage_targets, though the domain is evident from the name and content.

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 through its 'SUPPORTED ACTIONS' list and delete examples, but it never explicitly states when to use this tool versus alternatives or provides exclusion criteria. It lacks a clear 'use this when...' statement, leaving the agent to infer context from the action names.

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

manage_targetsB

TARGET MANAGEMENT TOOL - Manage external system connections and integrations

SUPPORTED ACTIONS: • list: Discover all configured targets with filtering • get: Retrieve detailed target configuration and credentials • create: Create new database or LDAP targets • delete: Delete individual target with version control • delete_targets: Bulk delete targets within a specific path

SUPPORTED TARGET TYPES: • Database: MySQL, PostgreSQL, MSSQL, Oracle, Snowflake, MongoDB, Cassandra, HanaDB, Redshift, Redis • LDAP: OpenLDAP, Active Directory • Cloud: AWS, Azure, GCP

Example: Create a MySQL database target for application connections

ParametersJSON Schema
NameRequiredDescriptionDefault
pwdNoPassword (REQUIRED for database targets)
sslNoEnable/Disable SSL connection to database
hostNoHost address or endpoint (REQUIRED for database targets)
jsonNoReturn structured JSON output for programmatic processing. Use TRUE when integrating with automation scripts or other tools
nameNoExact target name or identifier (REQUIRED for 'get' and 'create' actions). Examples: 'prod-mysql-db', 'aws-production', 'k8s-cluster-west'
pathNoPath to delete targets from (for delete_targets action)
portNoPort number (optional, uses default if not specified)
actionYesTarget management action to perform. SUPPORTED ACTIONS: 'list' (discover all targets with filtering), 'get' (retrieve detailed target configuration), 'create' (create new database/LDAP targets), 'delete' (delete individual target), 'delete_targets' (bulk delete targets by path)
filterNoPattern to filter target names (for 'list' action). Supports wildcards. Examples: 'prod-*', '*database*', 'aws-*'
bind_dnNoBind DN (REQUIRED for LDAP targets)
db_nameNoDatabase name (REQUIRED for database targets)
db_typeNoDatabase type for database targets. Supported values: 'mysql', 'mssql', 'hanadb', 'postgres', 'mongodb', 'snowflake', 'oracle', 'cassandra', 'redshift', 'redis'
ldap_urlNoLDAP Server URL (REQUIRED for LDAP targets)
uid_tokenNoUniversal identity authentication token. Only required when using universal_identity authentication instead of standard API key authentication
user_nameNoUsername (REQUIRED for database targets)
descriptionNoDescription of the target for documentation and management purposes
server_typeNoLDAP server type. Options: 'OpenLDAP', 'ActiveDirectory'OpenLDAP
target_typeNoType of target to create (REQUIRED for 'create' action). Examples: 'database', 'ldap', 'aws', 'azure', 'gcp', 'k8s', 'ssh'
cluster_modeNoEnable cluster mode for high availability (database targets)
ldap_ca_certNoCA Certificate File Content for LDAP
max_versionsNoMaximum number of versions to keep for the target
target_typesNoFilter by specific target types. SUPPORTED: ['mysql', 'postgres', 'mongodb', 'aws', 'azure', 'gcp', 'k8s', 'ssh', 'ldap', 'github', 'dockerhub', 'artifactory', 'salesforce', 'snowflake', 'redshift', 'mssql', 'cassandra', 'hanadb', 'rabbitmq', 'venafi', 'chef', 'web', 'gke', 'eks', 'oracle']. Use multiple types as array.
mongodb_atlasNoEnable MongoDB Atlas specific configuration
show_versionsNoInclude complete version history and configuration changes for the target (for 'get' action). Essential for audit trails and rollback scenarios
db_server_nameNoServer name for certificate verification
force_deletionNoEnforce deletion (bypass protection)
protection_keyNoProtection key name for encrypting target secrets (uses account default if not specified)
target_versionNoTarget version (for 'get' action: retrieve specific version, for 'delete' action: delete specific version). Use 0 for latest, positive integers for specific versions, or omit for current active version
azure_client_idNoAzure client ID for cloud identity authentication
azure_tenant_idNoAzure tenant ID for cloud identity authentication
connection_typeNoType of connection to database. Options: 'credentials', 'cloud-identity', 'wallet', 'parent-target'credentials
ssl_certificateNoSSL connection certificate data
bind_dn_passwordNoBind DN Password (REQUIRED for LDAP targets)
pagination_tokenNoContinuation token for large result sets. Automatically provided in previous response metadata when more results are available
token_expirationNoToken expiration for LDAP
snowflake_accountNoSnowflake account identifier
parent_target_nameNoName of the parent target (required when connection-type is 'parent-target')
azure_client_secretNoAzure client secret for cloud identity authentication
mongodb_uri_optionsNoMongoDB server URI options
oracle_service_nameNoOracle database service name
cloud_service_providerNoCloud service provider (currently supports Azure)
db_server_certificatesNoDatabase server certificates for verification
mongodb_default_auth_dbNoMongoDB server default authentication database
mongodb_atlas_project_idNoMongoDB Atlas project ID
oracle_wallet_login_typeNoOracle Wallet login type (password/mtls)
snowflake_api_private_keyNoSnowflake RSA private key (base64 encoded)
oracle_wallet_p12_file_dataNoOracle wallet p12 file data in base64
oracle_wallet_sso_file_dataNoOracle wallet sso file data in base64
mongodb_atlas_api_public_keyNoMongoDB Atlas API public key
mongodb_atlas_api_private_keyNoMongoDB Atlas API private key
snowflake_api_private_key_passwordNoSnowflake private key passphrase

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description must carry the full burden of disclosing behavioral traits, but it only mentions version control for delete and high-level actions. It does not disclose safety implications, permission requirements, side effects of create/delete, or any special behaviors like pagination or credential handling, which are critical for a tool handling external connections.

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 well-structured with clear sections for actions and target types, and it is front-loaded with the tool purpose. It avoids excessive wordiness while providing an informative overview, though the uppercase heading and repetitive formatting could be slightly tighter.

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

Completeness2/5

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

Despite having an output schema and rich parameter descriptions, the description lacks critical context for a high-complexity tool. It does not clarify which parameters apply to which actions, omits safety/versioning details beyond a mention, and creates ambiguity by stating create supports database/LDAP while the schema includes cloud types. This leaves gaps that could confuse an AI agent.

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%, so the baseline is 3 since parameter details are already well-documented within the schema. The description adds limited value by listing target types and an example, but it does not deepen understanding of parameter relationships or action-specific requirements beyond what the schema provides.

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

Purpose4/5

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

The description clearly identifies the tool as managing targets (external system connections/integrations) and lists specific supported actions (list, get, create, delete, delete_targets). While 'manage' is a generic verb, the action list provides concrete functionality and distinguishes it from other management tools.

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 context by framing targets as external connections and listing actions/types, but it does not explicitly state when to use this tool versus alternatives like manage_secrets or manage_account. There are no exclusions or comparative guidance, leaving usage partially implied rather than clearly directed.

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

security_guidelinesA

SECURITY GUIDELINES TOOL - Comprehensive security guidance and compliance management

SUPPORTED ACTIONS: • get_guidelines: Get security best practices and guidelines by category • validate: Validate secrets and configurations for security compliance • audit: Perform comprehensive security audits and assessments • compliance_check: Check compliance with industry standards (SOC2, ISO27001, GDPR, HIPAA)

SECURITY CATEGORIES: • best_practices: Security best practices and recommendations • compliance: Compliance frameworks and requirements • audit: Security audit procedures and checklists • encryption: Encryption standards and key management

COMPLIANCE STANDARDS: • SOC2: Service Organization Control 2 compliance • ISO27001: Information security management systems • GDPR: General Data Protection Regulation • HIPAA: Health Insurance Portability and Accountability Act

SECURITY FEATURES: • Enterprise-grade security with access control and audit trails • Automated security validation and compliance checking • Comprehensive audit procedures and reporting • Industry-standard compliance framework support

Example: Perform security audit and compliance check for SOC2 requirements

ParametersJSON Schema
NameRequiredDescriptionDefault
jsonNoSet output format to JSON
actionYesSecurity guidance action to perform. SUPPORTED ACTIONS: 'get_guidelines' (get security best practices and guidelines), 'validate' (validate secrets and configurations for security), 'audit' (perform comprehensive security audits), 'compliance_check' (check compliance with industry standards)
contextNoContext for validation/audit
categoryNoCategory: 'best_practices', 'compliance', 'audit', 'encryption'best_practices
audit_pathNoPath to audit (for audit action)
audit_typeNoAudit type: 'security', 'compliance', 'access'security
secret_nameNoSecret name to validate (for validate action)
secret_valueNoSecret value to validate (for validate action)
compliance_standardNoCompliance standard: 'SOC2', 'ISO27001', 'GDPR', 'HIPAA'

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions enterprise-grade security, access control, and audit trails, but does not explicitly state whether actions are read-only or have side effects. The actions listed all appear to be read-only queries, but this is never clarified, leaving room for ambiguity.

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 well-structured with clear sections for actions, categories, standards, and features, and ends with a practical example. It is somewhat longer than necessary—particularly the 'SECURITY FEATURES' section, which partly repeats capabilities already stated—but the organization makes it easy to scan and the content is largely non-redundant.

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?

Given the tool's complexity (9 parameters, 4 actions, multiple categories and standards), the description covers all major aspects: supported actions, categories, compliance standards, and an example. An output schema exists, so the lack of explicit return-value details is acceptable. The description is complete enough for an agent to select and invoke the tool correctly.

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?

The schema covers all 9 parameters with descriptions, so the baseline is 3. The description adds value by elaborating on the meaning of 'category' values (e.g., 'best_practices: Security best practices and recommendations') and explaining each compliance standard (SOC2, ISO27001, GDPR, HIPAA), which goes beyond the schema's simple enum lists.

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 opens with a clear statement of purpose: 'Comprehensive security guidance and compliance management', then enumerates four distinct actions (get_guidelines, validate, audit, compliance_check). This clearly distinguishes the tool from siblings that manage secrets or auth methods, as it focuses on guidance, validation, and compliance rather than operational management.

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 lists supported actions and categories, and includes an example ('Perform security audit and compliance check for SOC2 requirements'), which provides clear context for when to use the tool. However, it does not explicitly state when not to use it or mention alternative tools, such as manage_secrets, for related but different tasks.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 12 tool updatesv1.0.0
    • First observedget_api_reference
    • First observedmanage_account
    • First observedmanage_analytics
    • First observedmanage_auth_methods
    • First observedmanage_customer_fragments
    • First observedmanage_dfc_keys
    • First observedmanage_gateways
    • First observedmanage_roles
    • First observedmanage_rotation_settings
    • First observedmanage_secrets
    • First observedmanage_targets
    • First observedsecurity_guidelines

TDQS

A3.7/5.0

Scored across 12 tools

Disambiguation5/5

Each tool targets a distinct resource area, from secrets and keys to account, analytics, and security guidelines. Even closely related tools like manage_secrets and manage_dfc_keys are clearly separated by their resource types and actions.

Naming Consistency4/5

The naming is largely consistent with a 'manage_<resource>' pattern for 10 of 12 tools, but 'get_api_reference' and 'security_guidelines' deviate. This is a minor inconsistency that does not obscure the tools' purposes.

Tool Count5/5

With 12 tools, the server is well-scoped for a secrets and key management platform. Each tool covers a meaningful subdomain without redundancy, fitting comfortably within the ideal 3-15 tool range.

Completeness4/5

Core lifecycle operations are covered for secrets, DFC keys, auth methods, and targets, with rotation and security guidelines included. Minor gaps exist: manage_targets lacks an update action, manage_account is read-only, and dynamic secret support covers only LDAP, MySQL, and MongoDB, but these can be worked around.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server for the Delinea Secret Server and Platform APIs, enabling AI agents to manage secrets, users, groups, folders, roles, and access requests through natural language commands.
    46
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    MCP server for secure, just-in-time secret retrieval from 1claw vault and malicious content inspection, enabling AI agents to access secrets and security analysis.
    1
    958 npm
    2
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server that integrates with ARXsec.io API to execute security scans, compliance checks, secrets management, and remediation actions with policy enforcement, audit logging, and human approval workflows.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for AI-native credential management, enabling agents to securely store, retrieve, and manage API keys with encryption, spending budgets, and audit logging.
    MIT