Skip to main content
ClaudeWave
MCP ServersRegistry oficial0 estrellas0 forksPythonMITActualizado today
ClaudeWave Trust Score
77/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Documented (README)
Flags
  • !No description
Last scanned: 8/25/2026
Install in Claude Code / Claude Desktop
Method: NPX · skills
Claude Code CLI
claude mcp add skills -- npx -y skills
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "skills": {
      "command": "npx",
      "args": ["-y", "skills"]
    }
  }
}
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.
Casos de uso

Resumen de MCP Servers

# Bynn Agent Skills

Official [Agent Skills](https://agentskills.io) for **Bynn**, **Agemin**, and
**Detector24**. They teach any coding agent how to integrate **document fraud detection** for
manipulated, fake and AI-generated PDF and image documents, plus identity verification,
age verification, and content detection, including the parts that are easy to get subtly
and dangerously wrong.

Works with Claude Code, Cursor, Codex, Copilot, Gemini CLI, OpenCode, Windsurf, Zed, and
every other agent the `skills` CLI supports.

## Onboard an agent in one shot

Point any coding agent at [`agent-setup.md`](agent-setup.md) and it will install the skills
and wire up the MCP server itself:

```
Follow https://github.com/Bynn-Intelligence/skills/blob/main/agent-setup.md
```

It covers Claude Code, Cursor, VS Code, Windsurf, Zed, Claude Desktop, ChatGPT, and
headless or CI setups, and tells the agent what to verify before it reports success.

## Install

Any agent:

```bash
npx skills add Bynn-Intelligence/skills
```

The installer shows a picker grouped by product (Bynn, Agemin, Detector24), so you can
toggle a whole product with one keypress on its group header. Press `a` to select
everything. Nothing is pre-selected, which is the CLI's behaviour and not configurable
per repository.

To skip the picker entirely:

```bash
# every skill, every detected agent, no prompts
npx skills add Bynn-Intelligence/skills --all

# every skill, but choose the agents yourself
npx skills add Bynn-Intelligence/skills --skill '*'

# just one product's skills
npx skills add Bynn-Intelligence/skills --skill bynn --skill bynn-mcp --skill bynn-kyc-sessions
```

Running inside a coding agent skips the picker on its own and installs everything.

Claude Code, with the bundled MCP server:

```
/plugin marketplace add Bynn-Intelligence/skills
/plugin install bynn@bynn
```

## What is in here

### `bynn`

The identity platform. Start with the `bynn` skill: it routes to the rest.

| Skill | Covers |
|---|---|
| `bynn` | Router. Auth model, API base, errors, conventions. |
| `bynn-mcp` | Connecting an agent to `mcp.bynn.com` and driving Bynn through tools. |
| `bynn-document-fraud` | Forgery, tampering, and AI-generation analysis of documents. |
| `bynn-kyc-sessions` | Identity verification sessions: liveness, NFC chip reads, preflight. |
| `bynn-web-sdk` | Embedding verification in a website with `@bynn-intelligence/websdk`. |
| `bynn-age-verification` | Age estimation and minor detection, selfie and liveness. |
| `bynn-moderation` | Every detection model over image, video, text, and audio. |
| `bynn-face-search` | Face collections, enrollment, and 1:N search. |
| `bynn-autodoc` | Document requests sent over email or SMS. |
| `bynn-webhooks` | Payloads, the event catalogue, and signature verification. |

### `agemin`

Biometric age verification for websites and apps.

| Skill | Covers |
|---|---|
| `agemin` | Router. Asset ID versus private key, and why the browser result is not proof. |
| `agemin-web-sdk` | `@bynn-intelligence/agemin-sdk`, age gating, SEO bypass, React and Vue. |
| `agemin-api` | Server-side confirmation, email and selfie checks, reference lookups. |

### `detector24`

Detection models for image, video, audio, and text.

| Skill | Covers |
|---|---|
| `detector24` | Reading a model's `input_schema` and `output_schema`, async submission, and the rule that media must never be preprocessed. |

## Credentials

Nothing here ships a credential. Each skill says which key it needs and where to get it.

| Product | Get keys at |
|---|---|
| Bynn | `https://dashboard.bynn.com` (agent token at `/authenticate`) |
| Agemin | `https://agemin.com/app` |
| Detector24 | `https://detector24.ai/app` |

### Connect the MCP server

Installing skills does not connect the Bynn MCP server: `npx skills add` copies skill files
only. Connect it separately to get the Bynn tools.

```bash
claude mcp add --transport http bynn https://mcp.bynn.com
```

Then run `/mcp` and sign in. The Claude Code plugin registers this URL for you, but it
stays inert until that sign-in completes. For headless use, pass a token instead:

```bash
claude mcp add --transport http bynn https://mcp.bynn.com \
  --header "Authorization: Bearer $BYNN_API_TOKEN"
```

The endpoint is the root path. Appending `/mcp` returns a 404. Other clients, including
Claude Desktop, ChatGPT, Cursor, VS Code, Windsurf, and Zed, are covered in the
`bynn-mcp` skill.

## Two rules worth reading before you build

**Never preprocess media.** Do not resize, crop, re-encode, or strip metadata before
submitting an image, video, or document for fraud, tampering, or AI-generation analysis.
Those detectors read artifacts that live in the exact bytes of the original file, and
processing destroys them silently. The result comes back looking clean.

**The browser is never the verdict.** SDK callbacks run on the visitor's own machine.
Confirm every result server side before unlocking anything.

## Documentation

- Agent onboarding: [`agent-setup.md`](agent-setup.md)
- Bynn: `https://docs.bynn.com`, spec at `https://api.bynn.com/openapi.json`
- Agemin: `https://agemin.com/docs`
- Detector24: `https://detector24.ai/docs`

## License

MIT. See [LICENSE](LICENSE).

Lo que la gente pregunta sobre skills

¿Qué es Bynn-Intelligence/skills?

+

Bynn-Intelligence/skills es mcp servers para el ecosistema de Claude AI con 0 estrellas en GitHub.

¿Cómo se instala skills?

+

Puedes instalar skills clonando el repositorio (https://github.com/Bynn-Intelligence/skills) 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 Bynn-Intelligence/skills?

+

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

¿Quién mantiene Bynn-Intelligence/skills?

+

Bynn-Intelligence/skills es mantenido por Bynn-Intelligence. La última actividad registrada en GitHub es del 2026-08-24, con 0 issues abiertos.

¿Hay alternativas a skills?

+

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

Despliega skills 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: Bynn-Intelligence/skills
[![Featured on ClaudeWave](https://claudewave.com/api/badge/bynn-intelligence-skills)](https://claudewave.com/repo/bynn-intelligence-skills)
<a href="https://claudewave.com/repo/bynn-intelligence-skills"><img src="https://claudewave.com/api/badge/bynn-intelligence-skills" alt="Featured on ClaudeWave: Bynn-Intelligence/skills" width="320" height="64" /></a>

Más MCP Servers

Alternativas a skills