Skip to main content
ClaudeWave

Official CLI and agent toolkit for AI Content Drop (aicontentdrop.com) — AI video generation API, MCP server, agent skills

MCP ServersRegistry oficial0 estrellas0 forksGoMITActualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/27/2026
Install in Claude Code / Claude Desktop
Method: NPX · aicontentdrop
Claude Code CLI
claude mcp add aicontentdrop -- npx -y aicontentdrop
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "aicontentdrop": {
      "command": "npx",
      "args": ["-y", "aicontentdrop"],
      "env": {
        "ACD_API_KEY": "<acd_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
ACD_API_KEY
Casos de uso

Resumen de MCP Servers

# aicontentdrop

Official CLI and TypeScript SDK for [AI Content Drop](https://aicontentdrop.com) —
generate AI video and images across 35+ models from the terminal or from code.

No runtime dependencies. Works with `npx`, no install and no API key for
anything read-only.

```bash
npx aicontentdrop models --type video --max-credits 15
```

## Install

```bash
npm install -g aicontentdrop    # CLI
npm install aicontentdrop       # SDK
```

## Authentication

Reading the model catalogue, quoting costs, and asking questions need **no
credential**. Generating needs an API key you create at
[Settings → Integrations](https://aicontentdrop.com/settings/integrations) — any
account works, the free tier includes 10 credits.

```bash
export ACD_API_KEY=acd_live_…
```

Each key can carry a daily credit ceiling, so an agent holding it cannot
overspend the budget you set.

## CLI

```bash
acd models --type video --max-credits 20     # catalogue with credit costs
acd cost kling_3_0 --quantity 4              # quote before committing
acd ask "which models generate audio?"       # natural-language lookup
acd me                                       # account and credit balance
acd generate "a golden retriever surfing at sunset" --model kling_3_0 --wait
acd status <video_id>
acd list --limit 20                          # cursor-paginated
acd list --all                               # follows the cursor for you
acd register --name my-agent                 # read-scoped agent token
```

Every command prints JSON by default so scripts and agents can parse it; add
`--pretty` for humans. Failures print JSON to stderr and exit non-zero (`2`
failure, `3` rate limited).

Rehearse anything that would cost credits:

```bash
acd generate "…" --model kling_3_0 --sandbox   # no provider call, no credits
```

## SDK

```ts
import { AiContentDrop } from "aicontentdrop";

const acd = new AiContentDrop({ apiKey: process.env.ACD_API_KEY });

const models = await acd.models({ type: "video", maxCredits: 20 });

// Submit and poll until the render exists. Sends an Idempotency-Key by default,
// so a retry after a dropped response cannot charge twice.
const video = await acd.generateVideoAndWait(
  { prompt: "a golden retriever surfing at sunset", aiModel: "kling_3_0" },
  { onProgress: (v) => console.error(v.status) },
);
console.log(video.video_url);

// Pagination handled for you
for await (const item of acd.allVideos()) {
  console.log(item.id, item.status);
}
```

Errors throw `AcdError` with `status`, `code`, and `retryAfter` (on 429).

## For AI agents

- MCP server: `POST https://aicontentdrop.com/mcp` (Streamable HTTP) — manifest
  at [`/.well-known/mcp.json`](https://aicontentdrop.com/.well-known/mcp.json)
- Docs-only MCP: `POST https://aicontentdrop.com/mcp/docs`
- Agent contract: [`/auth.md`](https://aicontentdrop.com/auth.md)
- OpenAPI 3.1: [`/openapi.json`](https://aicontentdrop.com/openapi.json)
- Python SDK: [`python/`](./python) — same API surface, zero runtime
  dependencies, on [PyPI](https://pypi.org/project/aicontentdrop/) as
  `aicontentdrop` (`pip install aicontentdrop`)
- Go SDK: [`go/`](./go) — same API surface, standard library only,
  `go get github.com/aicontentdrop/aicontentdrop/go`
- Skills: [`skills/`](./skills) — model selection, prompt writing, batch runs,
  error handling, credits, image generation. Also served per skill at
  `https://aicontentdrop.com/skills/<name>/SKILL.md`, indexed at
  [`/skills/index.json`](https://aicontentdrop.com/skills/index.json)
- Agent plugin: [`plugin.json`](./plugin.json) + [`mcp.json`](./mcp.json)
  (Agent Plugins v1.0.0)
- Coding-agent rules for this repo: [`AGENTS.md`](./AGENTS.md)

## Links

Documentation <https://aicontentdrop.com/developers> ·
Support <support@aicontentdrop.com>

MIT licensed.

Lo que la gente pregunta sobre aicontentdrop

¿Qué es aicontentdrop/aicontentdrop?

+

aicontentdrop/aicontentdrop es mcp servers para el ecosistema de Claude AI. Official CLI and agent toolkit for AI Content Drop (aicontentdrop.com) — AI video generation API, MCP server, agent skills Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-26.

¿Cómo se instala aicontentdrop?

+

Puedes instalar aicontentdrop clonando el repositorio (https://github.com/aicontentdrop/aicontentdrop) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar aicontentdrop/aicontentdrop?

+

Nuestro agente de seguridad ha analizado aicontentdrop/aicontentdrop y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene aicontentdrop/aicontentdrop?

+

aicontentdrop/aicontentdrop es mantenido por aicontentdrop. La última actividad registrada en GitHub es del 2026-08-26, con 0 issues abiertos.

¿Hay alternativas a aicontentdrop?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega aicontentdrop en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: aicontentdrop/aicontentdrop
[![Featured on ClaudeWave](https://claudewave.com/api/badge/aicontentdrop-aicontentdrop)](https://claudewave.com/repo/aicontentdrop-aicontentdrop)
<a href="https://claudewave.com/repo/aicontentdrop-aicontentdrop"><img src="https://claudewave.com/api/badge/aicontentdrop-aicontentdrop" alt="Featured on ClaudeWave: aicontentdrop/aicontentdrop" width="320" height="64" /></a>

Más MCP Servers

Alternativas a aicontentdrop