Skip to main content
Glama
Swartdraak

Docker MCP Server

by Swartdraak

Docker MCP Server

npm version npm downloads CI CodeQL License: MIT Node.js Version TypeScript Docker Semantic Versioning

A comprehensive, production-ready, industry-standard compliant MCP (Model Context Protocol) Server that enables full Docker management capabilities for AI assistants like GitHub Copilot and Claude. Featuring 37 powerful tools covering containers, images, networks, volumes, and system operations.

๐Ÿ“‹ Table of Contents

Related MCP server: DockerHub MCP Server

About

Docker MCP Server is a Model Context Protocol server that bridges AI assistants with Docker, enabling natural language Docker operations. Built with TypeScript and following industry best practices, it provides a complete Docker management solution for AI-powered development workflows.

Why Docker MCP Server?

  • ๐Ÿค– AI-Native: Designed specifically for AI assistants (GitHub Copilot, Claude)

  • ๐Ÿ”ง Complete Coverage: 37 tools covering all essential Docker operations

  • ๐ŸŒ Remote Support: Connect to Docker on any host via TCP, HTTPS, or SSH tunnel

  • ๐Ÿ”’ Security First: Full TLS/SSL support with certificate authentication

  • ๐Ÿ“ฆ Production Ready: Comprehensive error handling, type safety, and testing

  • ๐Ÿ“š Well Documented: Extensive documentation with examples for every feature

  • ๐Ÿš€ Easy to Use: Simple installation and configuration

Use Cases

  • AI-Assisted DevOps: Let AI assistants manage your Docker infrastructure

  • Container Orchestration: Create, manage, and monitor containers through natural language

  • Development Automation: Automate Docker workflows with AI assistance

  • Remote Management: Securely manage Docker on remote hosts

  • Learning & Exploration: Explore Docker capabilities with AI guidance

Quick Start

# Install globally
npm install -g @swartdraak/docker-mcp-server

# Or use with npx (no installation needed)
npx @swartdraak/docker-mcp-server

For Developers

# Clone the repository
git clone https://github.com/Swartdraak/Docker-MCP.git
cd Docker-MCP

# Install dependencies
npm install

# Build the project
npm run build

# Start the server
npm start

โœจ Features

Core Capabilities

  • โœ… 37 Docker Tools: Complete coverage of Docker operations including connection validation

  • โœ… Remote Docker Support: Connect to Docker on remote hosts via TCP, HTTP, HTTPS, or SSH tunnel

  • โœ… Secure Connections: Full TLS/SSL support for secure remote Docker management

  • โœ… Container Management: Create, run, start, stop, restart, pause, unpause, rename, remove, exec, stats, logs

  • โœ… Image Operations: List, pull, build, push, tag, remove, prune

  • โœ… Network Management: List, create, remove, inspect, connect, disconnect

  • โœ… Volume Management: List, create, remove, inspect, prune

  • โœ… System Operations: Info, version, connection validation, prune (containers, images, volumes, networks)

  • โœ… Proper Array Handling: Correctly handles command, entrypoint, and environment variables

  • โœ… VS Code Integration: Works seamlessly with GitHub Copilot

  • โœ… Industry Standard: Uses MCP SDK and Docker best practices

  • โœ… TypeScript: Full type safety and modern JavaScript features

Recent Enhancements

  • ๐ŸŒ Remote Docker Host Support: Connect to Docker on any remote host

  • ๐Ÿ”’ TLS/HTTPS Support: Secure connections with certificate authentication

  • ๐Ÿ”‘ Environment-based Configuration: Easy setup via DOCKER_HOST, DOCKER_TLS_VERIFY, DOCKER_CERT_PATH

  • ๐Ÿš‡ SSH Tunnel Support: Secure remote access without exposing Docker API

What's New in v2.0

  • ๐Ÿš€ 25 New Tools: Added extensive container, image, network, and volume management

  • ๐Ÿ”ง Container Exec: Execute commands in running containers

  • ๐Ÿ“Š Container Stats: Real-time CPU, memory, network, and I/O metrics

  • ๐Ÿ—๏ธ Image Building: Build images from Dockerfile with build args

  • ๐Ÿ”„ Advanced Lifecycle: Restart, pause, unpause, rename containers

  • ๐ŸŒ Full Network CRUD: Create, inspect, connect, disconnect, remove networks

  • ๐Ÿ’พ Full Volume CRUD: Create, inspect, remove volumes

  • ๐Ÿงน Resource Cleanup: Prune unused containers, images, volumes, networks

  • โš™๏ธ System Info: Get Docker daemon information and version

Installation

npm install -g @swartdraak/docker-mcp-server

From Source

Prerequisites

  • Node.js 18 or higher

  • Docker installed and running

  • npm or yarn package manager

Setup

  1. Clone the repository:

git clone https://github.com/Swartdraak/Docker-MCP.git
cd Docker-MCP
  1. Install dependencies:

npm install
  1. Build the project:

npm run build

Usage

Standalone Mode

Run the server directly:

npm start

Remote Docker Configuration

The MCP server supports connecting to remote Docker hosts using environment variables:

Connect to Remote Docker via TCP

DOCKER_HOST=tcp://192.168.1.100:2375 npm start

Connect to Remote Docker via HTTPS with TLS

DOCKER_HOST=https://192.168.1.100:2376 \
DOCKER_TLS_VERIFY=1 \
DOCKER_CERT_PATH=~/.docker/certs \
npm start

Connect via SSH Tunnel

First, set up an SSH tunnel:

ssh -NL localhost:2375:/var/run/docker.sock user@remote-host

Then connect to the tunneled Docker:

DOCKER_HOST=tcp://localhost:2375 npm start

VS Code Integration

To integrate with VS Code and GitHub Copilot, add the following to your MCP settings file:

For Local Docker (~/.vscode/mcp-settings.json or in your workspace settings):

{
  "mcpServers": {
    "docker": {
      "command": "node",
      "args": ["/path/to/Docker-MCP/dist/index.js"]
    }
  }
}

For Remote Docker over TCP:

{
  "mcpServers": {
    "docker": {
      "command": "node",
      "args": ["/path/to/Docker-MCP/dist/index.js"],
      "env": {
        "DOCKER_HOST": "tcp://192.168.1.100:2375"
      }
    }
  }
}

For Remote Docker with TLS:

{
  "mcpServers": {
    "docker": {
      "command": "node",
      "args": ["/path/to/Docker-MCP/dist/index.js"],
      "env": {
        "DOCKER_HOST": "https://192.168.1.100:2376",
        "DOCKER_TLS_VERIFY": "1",
        "DOCKER_CERT_PATH": "/home/user/.docker/certs"
      }
    }
  }
}

For Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "docker": {
      "command": "node",
      "args": ["/path/to/Docker-MCP/dist/index.js"]
    }
  }
}

Alternative using npx (after publishing to npm):

{
  "mcpServers": {
    "docker": {
      "command": "npx",
      "args": ["@swartdraak/docker-mcp-server"]
    }
  }
}

Testing Your Connection

Connection Test Utility

Before using the MCP server, you can test your Docker connection with the included test utility:

# Test local Docker connection
node test-connection.js

# Test remote Docker via TCP
DOCKER_HOST=tcp://192.168.1.100:2375 node test-connection.js

# Test remote Docker via TLS
DOCKER_HOST=https://192.168.1.100:2376 \
DOCKER_TLS_VERIFY=1 \
DOCKER_CERT_PATH=~/.docker/certs \
node test-connection.js

# Test SSH tunnel connection
DOCKER_HOST=tcp://localhost:2375 node test-connection.js

The test utility will:

  • โœ“ Validate your configuration

  • โœ“ Check TLS certificates (if applicable)

  • โœ“ Test connection to Docker daemon

  • โœ“ Verify Docker operations (list containers, images, networks, volumes)

  • โœ“ Display system information

  • โœ“ Provide troubleshooting recommendations

validate_connection Tool

Once the MCP server is running, you can also use the validate_connection tool from your AI assistant:

"Validate my Docker connection"

This tool performs runtime connectivity tests and returns:

  • Connection status

  • Docker version and API information

  • System information

  • Test results for common operations

Manual Testing

You can also test your connection directly with Docker CLI:

# Set environment variables
export DOCKER_HOST=tcp://192.168.1.100:2375

# Test commands
docker version
docker info
docker ps

For detailed setup instructions, troubleshooting, and platform-specific guides, see:

  • CONFIGURATION.md - MCP server configuration examples

  • REMOTE_SETUP.md - Comprehensive remote connection setup guide (includes Windows 11 specific instructions)

Available Tools (37 Total)

Container Operations (15 tools)

list_containers

List all Docker containers (running or all)

{
  "all": true
}

create_container

Create a new Docker container

{
  "image": "nginx:latest",
  "name": "my-nginx",
  "command": ["nginx", "-g", "daemon off;"],
  "env": ["NODE_ENV=production"],
  "exposedPorts": {"80/tcp": {}},
  "hostConfig": {
    "PortBindings": {"80/tcp": [{"HostPort": "8080"}]},
    "Binds": ["/host/path:/container/path"]
  }
}

run_container

Create and start a container (recommended)

{
  "image": "python:3.9",
  "name": "my-python-app",
  "command": ["python", "app.py"],
  "env": ["DEBUG=true", "PORT=5000"]
}

start_container

Start a stopped container

{
  "containerId": "container_id_or_name"
}

stop_container

Stop a running container

{
  "containerId": "container_id_or_name",
  "timeout": 10
}

remove_container

Remove a container

{
  "containerId": "container_id_or_name",
  "force": false,
  "volumes": false
}

inspect_container

Get detailed container information

{
  "containerId": "container_id_or_name"
}

container_logs

Get container logs

{
  "containerId": "container_id_or_name",
  "tail": 100,
  "follow": false
}

exec_container ๐Ÿ†•

Execute a command in a running container

{
  "containerId": "container_id_or_name",
  "command": ["ls", "-la", "/app"],
  "workingDir": "/app",
  "env": ["DEBUG=true"]
}

container_stats ๐Ÿ†•

Get real-time resource usage statistics (CPU, memory, network, I/O)

{
  "containerId": "container_id_or_name",
  "stream": false
}

restart_container ๐Ÿ†•

Restart a Docker container

{
  "containerId": "container_id_or_name",
  "timeout": 10
}

pause_container ๐Ÿ†•

Pause all processes within a container

{
  "containerId": "container_id_or_name"
}

unpause_container ๐Ÿ†•

Unpause all processes within a container

{
  "containerId": "container_id_or_name"
}

rename_container ๐Ÿ†•

Rename a Docker container

{
  "containerId": "container_id_or_name",
  "newName": "new-container-name"
}

prune_containers ๐Ÿ†•

Remove all stopped containers

{}

Image Operations (7 tools)

list_images

List Docker images

{
  "all": false
}

pull_image

Pull an image from registry

{
  "image": "nginx:latest"
}

build_image ๐Ÿ†•

Build a Docker image from a Dockerfile

{
  "context": "/path/to/build/context",
  "dockerfile": "Dockerfile",
  "tag": "myimage:latest",
  "buildArgs": {
    "NODE_VERSION": "18"
  }
}

tag_image ๐Ÿ†•

Tag an image with a new name/tag

{
  "image": "myimage:latest",
  "repo": "myrepo/myimage",
  "tag": "v1.0.0"
}

push_image ๐Ÿ†•

Push an image to a Docker registry

{
  "image": "myrepo/myimage:v1.0.0"
}

remove_image ๐Ÿ†•

Remove a Docker image

{
  "image": "image_id_or_name",
  "force": false
}

prune_images ๐Ÿ†•

Remove unused images

{
  "all": false
}

Network Operations (7 tools)

list_networks

List Docker networks

{}

create_network ๐Ÿ†•

Create a Docker network

{
  "name": "my-network",
  "driver": "bridge",
  "internal": false
}

inspect_network ๐Ÿ†•

Get detailed information about a network

{
  "networkId": "network_id_or_name"
}

connect_network ๐Ÿ†•

Connect a container to a network

{
  "networkId": "network_id_or_name",
  "containerId": "container_id_or_name"
}

disconnect_network ๐Ÿ†•

Disconnect a container from a network

{
  "networkId": "network_id_or_name",
  "containerId": "container_id_or_name",
  "force": false
}

remove_network ๐Ÿ†•

Remove a Docker network

{
  "networkId": "network_id_or_name"
}

prune_networks ๐Ÿ†•

Remove all unused networks

{}

Volume Operations (5 tools)

list_volumes

List Docker volumes

{}

create_volume ๐Ÿ†•

Create a Docker volume

{
  "name": "my-volume",
  "driver": "local",
  "labels": {
    "environment": "production"
  }
}

inspect_volume ๐Ÿ†•

Get detailed information about a volume

{
  "volumeName": "volume_name"
}

remove_volume ๐Ÿ†•

Remove a Docker volume

{
  "volumeName": "volume_name",
  "force": false
}

prune_volumes ๐Ÿ†•

Remove all unused volumes

{}

System Operations (3 tools)

system_info ๐Ÿ†•

Get Docker system information

{}

system_version ๐Ÿ†•

Get Docker version information

{}

validate_connection ๐Ÿ†•

Validate Docker connection and test basic operations. Returns connection status, configuration details, and test results. Useful for troubleshooting connection issues.

{}

Key Features: Array Handling

This MCP server correctly handles arrays for:

  • Command: Passed as an array of strings ["python", "app.py", "--port", "8000"]

  • Entrypoint: Passed as an array of strings ["/bin/bash", "-c"]

  • Environment Variables: Passed as an array of KEY=VALUE strings ["NODE_ENV=production", "PORT=3000"]

  • Volume Bindings: Passed as an array of bind strings ["/host/path:/container/path"]

This resolves the common "array issue" where MCP servers incorrectly expect strings instead of arrays, causing errors when integrated with VS Code and GitHub Copilot.

Development

Scripts

  • npm run build - Compile TypeScript to JavaScript

  • npm run watch - Watch mode for development

  • npm start - Run the compiled server

  • npm run dev - Build and run

Project Structure

Docker-MCP/
โ”œโ”€โ”€ src/
โ”‚   โ””โ”€โ”€ index.ts          # Main server implementation
โ”œโ”€โ”€ dist/                 # Compiled JavaScript output
โ”œโ”€โ”€ package.json          # Project dependencies
โ”œโ”€โ”€ tsconfig.json         # TypeScript configuration
โ””โ”€โ”€ README.md            # This file

Troubleshooting

Docker Connection Issues

If you get "Cannot connect to Docker daemon" errors:

  • Ensure Docker is running: docker ps

  • Check Docker socket permissions

  • On Linux: Add your user to the docker group: sudo usermod -aG docker $USER

Remote Docker Connection Issues

If you can't connect to a remote Docker host:

  1. TCP Connection Issues:

    • Ensure the Docker daemon is configured to listen on TCP: Check /etc/docker/daemon.json

    • Verify the port is open: telnet remote-host 2375

    • Check firewall rules on the remote host

    • Ensure DOCKER_HOST environment variable is set correctly

  2. TLS/HTTPS Connection Issues:

    • Verify certificates are in the correct directory

    • Check certificate file names: ca.pem, cert.pem, key.pem

    • Ensure certificates are readable: chmod 644 ca.pem cert.pem key.pem

    • Verify DOCKER_TLS_VERIFY=1 and DOCKER_CERT_PATH are set

    • Test with Docker CLI first: docker --tlsverify --host=tcp://remote-host:2376 ps

  3. SSH Tunnel Issues:

    • Verify SSH tunnel is running: ps aux | grep ssh

    • Test tunnel: curl http://localhost:2375/version

    • Ensure local port is not already in use: lsof -i :2375

    • Try reconnecting the tunnel if connection is lost

VS Code Integration Issues

If the MCP server doesn't appear in VS Code:

  • Verify the path to dist/index.js is absolute

  • Check that the server builds successfully: npm run build

  • Restart VS Code after updating MCP settings

  • Check VS Code Output panel for MCP-related errors

  • Verify environment variables in MCP settings are correct

This server is specifically designed to handle arrays correctly. If you encounter array errors:

  • Ensure you're passing arrays for command, entrypoint, and env fields

  • Verify JSON formatting in tool arguments

  • Check that arrays contain string items

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Development Workflow

This project follows industry-standard practices:

  • Branching Strategy: Git Flow (see BRANCHING.md)

  • Versioning: Semantic Versioning 2.0.0 (see VERSIONING.md)

  • Commit Convention: Conventional Commits

  • CI/CD: Automated testing and releases via GitHub Actions

Quick Start for Contributors

  1. Fork the repository

  2. Create a feature branch: git checkout -b feature/my-feature

  3. Make your changes with conventional commits

  4. Ensure tests pass: npm test

  5. Push and create a Pull Request to develop

For detailed guidelines, see CONTRIBUTING.md.

Branch Structure

  • main - Production releases (protected)

  • develop - Integration branch (protected)

  • feature/* - New features

  • bugfix/* - Bug fixes

  • hotfix/* - Critical production fixes

Release Process

Releases are automated via GitHub Actions when tags are pushed:

# Create release branch
git checkout -b release/2.1.0

# Update version and changelog
npm version minor

# Merge to main and tag
git checkout main
git merge --no-ff release/2.1.0
git tag -a v2.1.0 -m "Version 2.1.0"
git push origin main --tags

See VERSIONING.md for complete release procedures.

For detailed usage examples, see EXAMPLES.md.

For configuration help, see CONFIGURATION.md.

Documentation

User Documentation

Developer Documentation

License

MIT License - see LICENSE file for details

Author

Swartdraak (eternusprocer@gmail.com)

Available Tools

12 tools
container_logsC

Get logs from a container

ParametersJSON Schema
NameRequiredDescriptionDefault
containerIdYesContainer ID or name
tailNoNumber of lines to show from the end of the logs
followNoFollow log output

TDQS

C2.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 burden of behavioral disclosure. 'Get logs' implies a read-only operation, but it doesn't specify critical behaviors such as whether this requires specific permissions, if it streams logs in real-time, potential rate limits, or what happens if the container doesn't exist. The description is too minimal for a tool with potential operational impact.

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

Conciseness5/5

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

The description is a single, efficient sentence with zero wasted words. It's front-loaded with the core purpose and appropriately sized for a straightforward tool, making it easy for an agent to parse quickly.

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?

Given the complexity of container operations and the lack of annotations and output schema, the description is insufficient. It doesn't cover what the logs contain, how they're formatted, error conditions, or behavioral nuances like streaming. For a tool that interacts with system resources, this leaves significant gaps in understanding.

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 schema already documents all parameters (containerId, tail, follow) with clear descriptions. The description adds no additional meaning beyond what's in the schema, such as explaining log format or interaction between parameters. This meets the baseline for high schema coverage.

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 'Get logs from a container' clearly states the verb ('Get') and resource ('logs from a container'), making the tool's purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'inspect_container' or specify what type of logs (e.g., stdout/stderr, application vs. system), which prevents a perfect score.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., the container must be running or exist), nor does it differentiate from sibling tools like 'inspect_container' that might provide related information. This lack of contextual guidance leaves the agent to infer usage scenarios.

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

create_containerC

Create a new Docker container

ParametersJSON Schema
NameRequiredDescriptionDefault
imageYesDocker image name (e.g., 'nginx:latest')
nameNoContainer name
commandNoCommand to run as an array (e.g., ['python', 'app.py'])
entrypointNoEntrypoint as an array (e.g., ['/bin/bash', '-c'])
envNoEnvironment variables as array of KEY=VALUE strings (e.g., ['NODE_ENV=production', 'PORT=3000'])
exposedPortsNoExposed ports as object with port/protocol keys (e.g., {'80/tcp': {}, '443/tcp': {}})
hostConfigNoHost configuration including port bindings and volumes
labelsNoContainer labels as key-value pairs

TDQS

C2.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 burden of behavioral disclosure but offers minimal information. It states this is a creation operation but doesn't mention whether it requires specific permissions, what happens if a container with the same name exists, whether the container starts automatically, or what the typical response format might be. For a complex mutation tool with 8 parameters, this is inadequate behavioral context.

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 extremely concise at just 4 words, front-loading the essential purpose without any wasted words. While this brevity comes at the cost of completeness, as a standalone statement it's efficiently structured.

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?

For a complex container creation tool with 8 parameters, no annotations, no output schema, and multiple sibling tools, the description is severely incomplete. It doesn't address behavioral aspects, usage context, or provide any guidance beyond the basic purpose, leaving significant gaps for an agent trying to use this 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?

The description adds no parameter information beyond what's already in the schema, which has 100% coverage with detailed descriptions for all 8 parameters. The baseline score of 3 reflects that the schema does the heavy lifting, though the description could have provided higher-level context about how parameters relate or typical usage patterns.

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 'Create a new Docker container' clearly states the verb ('create') and resource ('Docker container'), making the purpose immediately understandable. However, it doesn't differentiate this tool from its sibling 'run_container', which appears to serve a similar function, leaving some ambiguity about when to use one versus the other.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'run_container' or other container management tools. There's no mention of prerequisites, typical use cases, or constraints that would help an agent select this tool appropriately from among the 11 sibling tools available.

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

inspect_containerC

Get detailed information about a container

ParametersJSON Schema
NameRequiredDescriptionDefault
containerIdYesContainer ID or name

TDQS

C2.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 full burden for behavioral disclosure. It states this is a 'Get' operation, implying read-only behavior, but doesn't confirm if it's safe, whether it requires specific permissions, what format the detailed information returns, or if there are rate limits. The description adds minimal behavioral context beyond the basic purpose.

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

Conciseness5/5

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

The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a simple tool and front-loads the core purpose immediately.

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?

Given no annotations and no output schema, the description is incomplete for a tool that presumably returns detailed container information. It doesn't explain what 'detailed information' includes (e.g., status, configuration, resources) or the response format, leaving significant gaps for the agent to understand the tool's behavior and output.

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 the single parameter 'containerId' documented as 'Container ID or name'. The description adds no additional parameter semantics beyond what's in the schema, so it meets the baseline of 3 where the schema does the heavy lifting.

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 verb ('Get') and resource ('detailed information about a container'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'list_containers' or 'container_logs' which also provide information about containers, missing an opportunity for clearer distinction.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't specify that this is for detailed metadata rather than logs (container_logs) or a summary list (list_containers), nor does it mention prerequisites like needing a container ID.

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

list_containersC

List all Docker containers

ParametersJSON Schema
NameRequiredDescriptionDefault
allNoShow all containers (default shows just running)

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 carries full burden. It states 'List all Docker containers' but doesn't disclose behavioral traits such as output format, pagination, permissions required, rate limits, or whether it's a read-only operation. This is a significant gap for a tool with no annotation coverage.

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

Conciseness5/5

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

The description is a single, efficient sentence with zero waste. It's front-loaded with the core purpose, making it highly concise and well-structured for quick understanding.

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?

Given the lack of annotations and output schema, the description is incomplete. It doesn't address behavioral aspects like output format or operational context, which are crucial for a tool that interacts with system resources like Docker containers. More detail is needed to compensate for the missing structured data.

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 the 'all' parameter fully documented in the schema. The description adds no additional parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate as the schema does the heavy lifting.

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 verb ('List') and resource ('all Docker containers'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'list_images' or 'list_networks' beyond the resource name, missing explicit sibling distinction.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for listing containers, or compare to related tools like 'inspect_container' for detailed views, leaving usage decisions to inference.

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

list_imagesC

List Docker images

ParametersJSON Schema
NameRequiredDescriptionDefault
allNoShow all images (default hides intermediate)

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 carries the full burden of behavioral disclosure. 'List Docker images' implies a read-only operation, but it doesn't specify whether this requires specific permissions, how results are formatted (e.g., JSON, table), if there's pagination, or what happens on errors. For a tool with zero annotation coverage, this leaves critical behavioral traits undocumented.

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 extremely concise at just three words ('List Docker images'), with zero wasted language. It's front-loaded and directly states the core functionality without unnecessary elaboration, making it efficient and easy to parse.

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?

Given the lack of annotations and output schema, the description is incomplete for effective tool use. It doesn't explain what the tool returns (e.g., image IDs, tags, sizes), how results are structured, or any behavioral nuances. For a listing tool in a Docker context with multiple similar siblings, more context is needed to distinguish it and guide proper invocation.

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 the single parameter 'all' fully documented in the schema itself ('Show all images (default hides intermediate)'). The description adds no additional parameter information beyond what the schema provides, so it meets the baseline score of 3 for high schema coverage without compensating value.

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 'List Docker images' clearly states the verb ('List') and resource ('Docker images'), making the tool's purpose immediately understandable. However, it doesn't differentiate this from sibling tools like 'list_containers', 'list_networks', or 'list_volumes', which all follow the same 'list [resource]' pattern without specifying what distinguishes listing images from listing other Docker resources.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., Docker daemon running), compare it to similar tools like 'inspect_container' for detailed views, or explain why one might list images instead of containers. With multiple sibling listing tools, this lack of differentiation leaves usage context unclear.

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

list_networksB

List Docker networks

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/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. 'List Docker networks' implies a read-only operation, but it doesn't specify what information is returned (e.g., network names, IDs, types), whether there are rate limits, authentication requirements, or how results are formatted (e.g., JSON, plain text). This leaves significant gaps for an agent to understand the tool's behavior.

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 extremely concise at just three words ('List Docker networks'), which is front-loaded and wastes no space. For a simple tool with no parameters, this is appropriately sized and efficient.

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

Completeness3/5

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

Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is minimally adequate. It states what the tool does but lacks details on behavior, usage context, or output format. Without annotations or output schema, the agent must infer these aspects, making this description incomplete for optimal use.

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 tool has 0 parameters, and the input schema has 100% description coverage (though empty). The description doesn't need to add parameter semantics, so it meets the baseline expectation. No points are deducted since there are no parameters to document.

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 'List Docker networks' clearly states the verb ('List') and resource ('Docker networks'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'list_containers' or 'list_images' beyond the resource name, which keeps it from a perfect score.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. There are multiple list-related siblings (list_containers, list_images, list_volumes), but the description doesn't explain when to choose networks over those or mention any prerequisites or context for usage.

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

list_volumesB

List Docker volumes

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/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 but offers minimal information. It implies a read-only operation (listing) but doesn't cover critical aspects like permissions required, rate limits, output format (e.g., JSON list), or error conditions (e.g., Docker not installed). This is inadequate for a tool with zero annotation coverage.

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

Conciseness5/5

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

The description is extremely concise ('List Docker volumes')โ€”a single phrase with no wasted words. It's front-loaded with the core action and resource, making it easy to parse. This efficiency is ideal for a simple listing tool.

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?

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimally complete. It identifies the resource but lacks context about behavior, output, or integration with siblings. For a basic read operation, it's adequate but leaves gaps in usage and transparency that could hinder an agent.

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 tool has 0 parameters with 100% schema description coverage (empty schema), so no parameter documentation is needed. The description doesn't add parameter details, which is appropriate, but it also doesn't imply any hidden parameters or constraints. Baseline 4 is given for zero-parameter tools where the schema fully covers the absence of inputs.

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 'List Docker volumes' clearly states the verb ('List') and resource ('Docker volumes'), making the purpose immediately understandable. It distinguishes from siblings like 'list_containers' and 'list_images' by specifying volumes. However, it lacks specificity about scope (e.g., all volumes vs. filtered), preventing a perfect score.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., Docker daemon running), compare to other listing tools (e.g., 'list_containers'), or specify use cases (e.g., checking available storage). This leaves the agent with minimal context for decision-making.

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

pull_imageC

Pull a Docker image from a registry

ParametersJSON Schema
NameRequiredDescriptionDefault
imageYesImage name with optional tag (e.g., 'nginx:latest')

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 carries the full burden of behavioral disclosure. While 'pull' implies a network operation that fetches data, the description doesn't mention authentication needs (e.g., for private registries), rate limits, whether it overwrites existing images, what happens on failure, or the expected output format. This leaves significant gaps for a tool that interacts with external registries.

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

Conciseness5/5

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

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every word earns its place in conveying the essential function.

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?

Given the complexity of Docker operations (network-dependent, potential authentication, side effects) and the lack of annotations and output schema, the description is insufficient. It doesn't explain what 'pull' entails behaviorally (e.g., downloads layers, updates local cache), success/failure conditions, or output details, leaving the agent with incomplete context for reliable use.

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 the single parameter 'image' well-documented in the schema as 'Image name with optional tag (e.g., 'nginx:latest')'. The description adds no additional parameter information beyond what the schema provides, so it meets the baseline for high schema coverage without compensating value.

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 verb ('pull') and resource ('Docker image from a registry'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'list_images' or 'run_container' which might also involve Docker images, leaving some ambiguity about when this specific pull operation is needed versus other image-related operations.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. With siblings like 'list_images' (to check existing images), 'run_container' (which might pull images automatically), and 'create_container' (which might require images), there's no indication of prerequisites, typical workflows, or when pulling is necessary versus optional.

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

remove_containerC

Remove a Docker container

ParametersJSON Schema
NameRequiredDescriptionDefault
containerIdYesContainer ID or name
forceNoForce removal of running container
volumesNoRemove associated volumes

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 carries the full burden of behavioral disclosure. 'Remove' implies a destructive operation, but the description doesn't clarify that this permanently deletes the container, what happens to running containers (hinted at by force parameter but not explained), or whether removal is irreversible. For a destructive tool with zero annotation coverage, this is inadequate behavioral transparency.

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

Conciseness5/5

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

The description is a single, efficient sentence that directly states the tool's function without any unnecessary words. It's perfectly front-loaded and every word earns its place. This is an excellent example of conciseness for a simple tool.

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?

Given this is a destructive operation with no annotations and no output schema, the description is insufficiently complete. It doesn't explain what 'remove' entails (permanent deletion), what happens to associated resources, potential side effects, or what the tool returns. For a 3-parameter tool that performs irreversible changes, more contextual information is needed.

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 schema already fully documents all three parameters (containerId, force, volumes) with their types, descriptions, and defaults. The description adds no additional parameter information beyond what's in the schema. According to scoring rules, when schema coverage is high (>80%), the baseline is 3 even with no param info in the description.

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 'Remove a Docker container' clearly states the action (remove) and resource (Docker container), making the purpose immediately understandable. It distinguishes from siblings like stop_container (which stops but doesn't remove) and list_containers (which only lists). However, it doesn't explicitly mention that this is a destructive deletion operation versus other container management actions.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., container must be stopped unless force=true), when to choose remove_container over stop_container, or what happens to associated resources. With multiple sibling tools for container management, this lack of comparative guidance is a significant gap.

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

run_containerB

Run a container (create and start). This is the preferred method for starting containers.

ParametersJSON Schema
NameRequiredDescriptionDefault
imageYesDocker image name (e.g., 'nginx:latest')
nameNoContainer name
commandNoCommand to run as an array (e.g., ['python', 'app.py'])
entrypointNoEntrypoint as an array (e.g., ['/bin/bash', '-c'])
envNoEnvironment variables as array of KEY=VALUE strings (e.g., ['NODE_ENV=production', 'PORT=3000'])
exposedPortsNoExposed ports as object with port/protocol keys (e.g., {'80/tcp': {}, '443/tcp': {}})
hostConfigNoHost configuration including port bindings and volumes
labelsNoContainer labels as key-value pairs

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. While it mentions the tool creates and starts containers, it lacks critical information about permissions needed, whether this is a destructive operation (e.g., if a container with the same name exists), resource implications, error handling, or what happens on failure. For a complex container management tool, this is a significant gap.

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 extremely concise with just two sentences that are front-loaded and zero waste. Every word earns its place by stating the action and providing usage guidance without unnecessary elaboration.

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?

Given the complexity (8 parameters with nested objects), no annotations, and no output schema, the description is insufficiently complete. It doesn't explain what the tool returns, error conditions, side effects, or behavioral nuances needed for a container execution tool. The description should provide more context about the operation's implications.

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 schema already documents all 8 parameters thoroughly. The description adds no additional parameter information beyond what's in the schema, so it meets the baseline of 3 where the schema does the heavy lifting without compensating for any gaps.

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 action ('run a container') and specifies it involves both creation and starting, which distinguishes it from siblings like 'create_container' and 'start_container'. However, it doesn't explicitly contrast with these specific alternatives, missing full sibling differentiation.

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 by stating this is the 'preferred method for starting containers', which implies when to use it over alternatives like 'create_container' followed by 'start_container'. However, it doesn't explicitly mention when NOT to use it or detail specific scenarios where other tools might be better.

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

start_containerB

Start a stopped Docker container

ParametersJSON Schema
NameRequiredDescriptionDefault
containerIdYesContainer ID or name

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. While 'Start' implies a state-changing operation, it doesn't describe permissions needed, whether this affects container data, error conditions (e.g., if container doesn't exist), or what happens on success. For a mutation tool with zero annotation coverage, this is insufficient.

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

Conciseness5/5

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

The description is a single, efficient sentence with zero wasted words. It's front-loaded with the core purpose and uses precise technical language appropriate for Docker operations.

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?

For a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what happens after starting (does it return container status? success confirmation?), error conditions, or behavioral nuances. Given the complexity of container operations and lack of structured metadata, more context is needed.

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 the single parameter 'containerId' well-documented in the schema as 'Container ID or name'. The description doesn't add any parameter details beyond what the schema provides, so baseline 3 is appropriate when the schema does the heavy lifting.

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 specific action ('Start') and resource ('a stopped Docker container'), using precise technical terminology. It distinguishes from siblings like 'stop_container', 'run_container', and 'create_container' by focusing exclusively on restarting already-existing containers.

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 specifying 'a stopped Docker container', suggesting it should only be used on containers that are currently stopped. However, it doesn't explicitly state when NOT to use it (e.g., for running containers or creating new ones) or name specific alternatives like 'run_container' for starting new containers.

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

stop_containerC

Stop a running Docker container

ParametersJSON Schema
NameRequiredDescriptionDefault
containerIdYesContainer ID or name
timeoutNoSeconds to wait before killing the container

TDQS

C2.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 burden of behavioral disclosure. It states the action ('Stop') but doesn't clarify critical details: whether this is a graceful stop versus force kill, what happens to container resources after stopping, if it requires specific permissions, or what the response looks like (e.g., success/failure indicators). This is inadequate for a mutation tool with zero annotation coverage.

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

Conciseness5/5

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

The description is a single, direct sentence with zero wasted words. It front-loads the core action and target, making it highly efficient and easy to parse. Every word earns its place by conveying essential purpose without redundancy.

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?

Given the complexity of a mutation tool (stopping a container) with no annotations and no output schema, the description is incomplete. It lacks behavioral details (e.g., side effects, error handling) and usage context, which are crucial for an agent to invoke this tool correctly and safely. The high schema coverage doesn't compensate for these gaps in operational guidance.

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 description adds no parameter-specific information beyond what the input schema already provides. Since schema description coverage is 100%, with clear documentation for both 'containerId' and 'timeout', the baseline score of 3 is appropriate. The description doesn't compensate with additional context like format examples or usage tips.

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 action ('Stop') and target ('a running Docker container'), making the purpose immediately understandable. It doesn't explicitly differentiate from sibling tools like 'remove_container' or 'start_container', but the verb 'Stop' is specific enough to imply halting execution rather than deletion or initiation.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., the container must be running), exclusions (e.g., not for stopped containers), or comparisons to siblings like 'remove_container' for deletion or 'start_container' for restarting. This leaves the agent to infer usage from context alone.

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. Dates show when Glama detected each change.

  1. 12 tool updatesv1.0.0
    • First observedcontainer_logs
    • First observedcreate_container
    • First observedinspect_container
    • First observedlist_containers
    • First observedlist_images
    • First observedlist_networks
    • First observedlist_volumes
    • First observedpull_image
    • First observedremove_container
    • First observedrun_container
    • First observedstart_container
    • First observedstop_container

TDQS

A3.5/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose targeting specific Docker resources and actions. For example, create_container and run_container are well-differentiated by their descriptions, with run_container explicitly noted as the preferred method for starting containers. There is no ambiguity or overlap in functionality across the tool set.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case, such as list_containers, create_container, and stop_container. This predictable naming convention makes it easy for agents to understand and select the appropriate tools without confusion.

Tool Count5/5

With 12 tools, the server is well-scoped for managing Docker containers, images, networks, and volumes. Each tool earns its place by covering essential operations like creation, listing, starting, stopping, and removal, without being overly sparse or bloated.

Completeness4/5

The tool set provides strong coverage for core Docker operations, including CRUD for containers and listing for other resources. Minor gaps exist, such as no tools for creating or removing networks/volumes, but agents can still perform most workflows effectively with the available tools.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/Swartdraak/Docker-MCP'

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