Danube Tools Marketplace

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill is a broad tool-marketplace connector: it discloses its API-key access, but it can let your agent execute many changing tools and modify skills/workflows with limited built-in approval boundaries.

Install only if you are comfortable giving Danube and your agent broad delegated ability to discover and run marketplace tools. Before using it, review connected credentials, prefer least-privilege access, and require explicit confirmation for destructive, public, financial, or bulk actions.

Findings (5)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If connected to powerful services, the agent could take real actions such as posting, changing records, or triggering workflows without a clearly documented approval boundary.

Why it was flagged

The skill exposes broad, dynamic tool execution and concurrent batch execution, but the artifacts do not define per-action confirmation, allowlisting, or safeguards for high-impact tools.

Skill content
`execute_tool(tool_id, parameters)` — Run any tool by its ID ... `batch_execute_tools(calls)` — Run multiple tools concurrently in a single request (up to 10).
Recommendation

Use only with explicit user confirmation for impactful actions, restrict connected services where possible, and avoid enabling credentials for accounts you do not want the agent to operate.

What this means

Compromise or misuse of this one key could allow broad actions in the connected Danube account, including modifying or deleting skills/workflows.

Why it was flagged

A single credential grants broad execution plus write/delete authority over user-scoped Danube resources; the artifacts do not describe narrower token scopes or per-tool permission boundaries.

Skill content
The `DANUBE_API_KEY` grants: ... **Execute**: Run tools and workflows ... **Write (user-scoped only)**: Create/update/delete your own skills and workflows
Recommendation

Use the least-privileged key available, rotate the key if exposed, and confirm whether Danube supports narrower scopes or separate keys for read-only versus write/execute access.

What this means

Tool requests, parameters, and results may pass through Danube’s MCP service rather than staying local.

Why it was flagged

The agent communicates with an external MCP server using an API key; this is expected for the integration, but it creates a sensitive provider communication boundary.

Skill content
"url": "https://mcp.danubeai.com/mcp", "headers": { "danube-api-key": "YOUR_API_KEY" }
Recommendation

Review Danube’s privacy policy and avoid sending secrets or sensitive business data through tools unless you trust the provider and need that operation.

What this means

Sensitive inputs or outputs used in tool calls may be stored in Danube’s audit logs.

Why it was flagged

The skill discloses that executions are logged, including parameters and results, which may contain sensitive user or account data.

Skill content
**Audit trail**: All tool executions are logged with timestamps, parameters, and results for user review.
Recommendation

Check log retention and deletion controls before using the skill with confidential data.

What this means

One bad request could trigger several actions across connected services before the user can intervene.

Why it was flagged

Multi-step workflows and concurrent batch calls can amplify a mistaken instruction across multiple tools or services, and the artifacts do not describe rollback or containment controls.

Skill content
Danube also offers ... workflows (multi-step tool chains) ... `batch_execute_tools(calls)` — Run multiple tools concurrently in a single request (up to 10).
Recommendation

Require confirmation before batch or workflow execution, start with low-risk tools, and avoid chaining actions that mutate important accounts without review.