agentsclimarketplace

Case 00514

Skill knownasnaffy/prompthound/dataset/case_00514

Control and use an MCP Toolkit running in Docker. Use when setting up Docker MCP Toolkit (docker compose up/down), checking status/logs, configuring environment variables/secrets, listing available MCP tools/servers, or invoking MCP tools (typically via a local HTTP endpoint) to connect OpenClaw workflows to external systems like Postgres/Neon.From its SKILL.md

Install
npx -y skills add knownasnaffy/prompthound --skill case_00514

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.6 KB, 554 tokens by cl100k_base, as published. Nobody here has run it

Docker MCP Toolkit

Run, manage, and invoke Docker Desktop’s MCP Toolkit using the docker mcp CLI.

Install + preflight (Docker Desktop)

  1. Install/upgrade Docker Desktop (MCP Toolkit is in Docker Desktop 4.62+ per docs).

  2. Enable MCP Toolkit:

  • Docker Desktop → SettingsBeta featuresEnable Docker MCP ToolkitApply.
  1. Preflight:
./scripts/preflight.sh

Quick start

List enabled servers/tools:

./scripts/servers.sh
./scripts/tools.sh

Core operations

  • List/enable/disable servers:

    • ./scripts/servers.sh
    • ./scripts/server-enable.sh <server-name>
    • ./scripts/server-disable.sh <server-name>
  • List tools:

    • ./scripts/tools.sh
  • Invoke a tool (via Docker’s gateway/tool runner):

./scripts/call-tool.sh --tool "mcp-find" --json '{"query":"postgres","limit":5}'

Notes:

  • call-tool.sh requires jq.
  • docker mcp tools call uses key=value tokens.
  • Non-string values use := (example: limit:=5, activate:=true).
  • This skill currently supports only primitive JSON values (string/number/bool/null). Nested objects/arrays are rejected.
  • For tools requiring object arguments (e.g. mcp-config-set), call docker mcp tools inspect <tool> --format json then run docker mcp tools call ... directly until this skill adds a tested encoder.

How invocation works (important)

Docker MCP Toolkit runs an MCP Gateway and exposes tools through it. This skill intentionally uses the docker mcp tools … commands so OpenClaw can invoke tools without needing native MCP client support.

If you need a true MCP client connection (stdio/SSE), pair this skill with the mcporter skill.

Secrets and safety

  • Prefer Docker Desktop’s secrets/keychain integration when possible.
  • Do not expose gateway ports publicly.
  • Use least-privilege credentials (separate Neon role with only required grants).

For hardening guidance, read: references/security.md.

Troubleshooting

  • If commands say “Docker Desktop is not running”: start Docker Desktop.
  • If MCP Toolkit isn’t visible: confirm it’s enabled in Beta features.
  • If a tool call fails: run docker mcp tools --verbose inspect <tool> and check Docker Desktop MCP Toolkit UI for server configuration.

What ships with it: 9 files

4.6 KB alongside SKILL.md, 6 of them executable

scripts/

Keep looking

Skills are one crate of 326,782. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.