Skip to main content
ClaudeWave

Universal AI skill compiler + MCP bridge. Write once, run across ChatGPT/Codex, Claude, Gemini, DeepSeek, Meta/Llama and browsers.

MCP ServersRegistry oficial0 estrellas0 forksPythonMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/13/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · -e
Claude Code CLI
claude mcp add daube-agent-bridge -- python -m -e
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "daube-agent-bridge": {
      "command": "python",
      "args": ["-m", "pip"]
    }
  }
}
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.
💡 Install first: pip install -e
Casos de uso

Resumen de MCP Servers

# D'AUBE // BRIDGE²

> **Write once. Run across agents.**

D'AUBE // BRIDGE² is an open-source universal AI skill compiler and MCP bridge. Define one portable capability spec, then compile it into integration artifacts for ChatGPT/Codex, Claude, Gemini, DeepSeek, Meta/Llama, MCP hosts, and Chromium browsers.

[![Release](https://img.shields.io/github/v/release/daubesonntag-dotcom/daube-agent-bridge)](https://github.com/daubesonntag-dotcom/daube-agent-bridge/releases)
[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-active-brightgreen)](https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.daubesonntag-dotcom%2Fdaube-agent-bridge)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![Python](https://img.shields.io/badge/python-3.11%2B-blue.svg)](pyproject.toml)

## Why BRIDGE²

AI tooling is fragmented. The same capability is repeatedly rewritten as MCP tools, provider function schemas, skills, plugins, and browser configuration. BRIDGE² treats those surfaces as compiler targets while keeping capability logic provider-neutral.

```text
skill.yaml
  |
  +-- MCP tool schema
  +-- OpenAI / ChatGPT / Codex artifacts
  +-- Claude plugin + SKILL.md
  +-- Gemini SKILL.md + MCP config
  +-- DeepSeek tool schemas
  +-- Meta/Llama function schemas
  +-- Chromium extension manifest
```

**Current release:** 7 target families, 15 deterministic artifacts, one MCP server.

## 30-second start

```bash
git clone https://github.com/daubesonntag-dotcom/daube-agent-bridge.git
cd daube-agent-bridge
python -m pip install -e ".[dev]"
daube-bridge validate examples/skill.yaml
daube-bridge compile examples/skill.yaml -o build/sample
```

Install the verified v0.1.3 wheel directly from GitHub Releases:

```bash
python -m pip install https://github.com/daubesonntag-dotcom/daube-agent-bridge/releases/download/v0.1.3/daube_agent_bridge-0.1.3-py3-none-any.whl
python -m daube_bridge doctor
```

`python -m daube_bridge ...` is the shim-free CLI path for Windows environments where Application Control blocks generated console-script executables.

Run BRIDGE² as a local stdio MCP server:

```bash
python -m daube_bridge.server
```

Or expose the HTTP MCP endpoint for remote/local integrations:

```bash
daube-bridge serve
# http://127.0.0.1:8000/mcp
```

## One-click MCPB

BRIDGE² ships an MCPB v0.4 bundle definition using the cross-platform `uv` runtime. Build the deterministic bundle with:

```bash
python scripts/build_mcpb.py
```

The build is reproducible: identical source produces an identical archive hash. Official MCP Registry metadata lives in [`server.json`](server.json).

## Target matrix

| Surface | Output | Strategy |
|---|---|---|
| MCP hosts | MCP server + tool schemas | Shared transport/tool backbone |
| OpenAI / ChatGPT / Codex | `SKILL.md`, MCP descriptor, function schemas | Skills + MCP/tool calling |
| Claude | `.claude-plugin/plugin.json`, `.mcp.json`, `SKILL.md` | Plugin + portable skill + MCP |
| Gemini / Google agents | `SKILL.md`, MCP config | Portable skill + MCP |
| DeepSeek | OpenAI-style `tools.json` | Function/tool calling adapter |
| Meta / Llama | neutral `tools.json` | Application/router function schema |
| Chromium browsers | Manifest V3 side panel | Endpoint/config control surface |

This matrix describes integration artifacts BRIDGE² generates. It does not invent provider capabilities that do not exist.

## Portable skill format

```yaml
name: My Research Skill
version: 0.1.0
description: Research and compare options.
tools:
  - name: compare_options
    description: Compare options against explicit criteria.
    parameters:
      type: object
      properties:
        options:
          type: array
          items: {type: string}
      required: [options]
```

## MCP tools

The bundled server exposes three small primitives:

- `bridge_targets` — discover supported compilation targets.
- `validate_skill` — validate a portable skill object.
- `compile_skill` — compile a skill in-memory for another agent or tool.

That makes BRIDGE² usable both as a CLI and as infrastructure callable by other agents.

## Verify before release

```bash
python scripts/verify.py
python scripts/build_mcpb.py
.tools/mcp-publisher.exe validate
```

The verification gate covers tests, Ruff, target discovery, sample compilation, wheel creation, deterministic MCPB creation, and official MCP Registry metadata validation.

After publishing a GitHub Release, smoke-test the public wheel in an isolated environment:

```bash
python scripts/smoke_release.py 0.1.3
```

## Roadmap

- ChatGPT Apps SDK interactive widget target.
- `npx` / TypeScript compiler parity.
- Provider capability detection and compatibility linting.
- Signed bundles and provenance manifests.
- Remote registry + searchable skill catalog.
- One-click adapters for agent IDEs and orchestration frameworks.
- Golden interoperability fixtures across providers.

## Project principles

1. **Portable by default.** Prefer MCP and open schemas over provider lock-in.
2. **Evidence over pretending.** Never claim native support that a provider does not have.
3. **Readable outputs.** Generated artifacts stay human-auditable and diffable.
4. **Safe boundaries.** Authentication and sensitive actions remain explicit.
5. **Fast adoption.** A useful first result should take minutes, not a framework migration.

## Contributing

Issues, adapters, compatibility fixtures, docs, and provider integrations are welcome. Provider-format changes should include a link to authoritative documentation and a minimal reproducible fixture.

Useful starting points:

- [`CONTRIBUTING.md`](CONTRIBUTING.md)
- [`CHANGELOG.md`](CHANGELOG.md)
- [`GOVERNANCE.md`](GOVERNANCE.md)
- [`docs/PROVIDER_COMPATIBILITY.md`](docs/PROVIDER_COMPATIBILITY.md)
- [`docs/20K_STAR_PLAYBOOK.md`](docs/20K_STAR_PLAYBOOK.md)
- [`docs/CODEX_FOR_OSS.md`](docs/CODEX_FOR_OSS.md)
- [`docs/OPEN_SOURCE_FUND.md`](docs/OPEN_SOURCE_FUND.md)
- [`docs/DISTRIBUTION.md`](docs/DISTRIBUTION.md)
- [`docs/LAUNCH_KIT.md`](docs/LAUNCH_KIT.md)
- [`SECURITY.md`](SECURITY.md)

## License

MIT © 2026 D'AUBE SONNTAG.
agent-skillsai-agentsbrowser-extensionchatgptclaudecodexdeepseekdeveloper-toolsfastmcpgeminiinteroperabilityllamallm-toolsmcpmcp-servermodel-context-protocolopenaipython

Lo que la gente pregunta sobre daube-agent-bridge

¿Qué es daubesonntag-dotcom/daube-agent-bridge?

+

daubesonntag-dotcom/daube-agent-bridge es mcp servers para el ecosistema de Claude AI. Universal AI skill compiler + MCP bridge. Write once, run across ChatGPT/Codex, Claude, Gemini, DeepSeek, Meta/Llama and browsers. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-12.

¿Cómo se instala daube-agent-bridge?

+

Puedes instalar daube-agent-bridge clonando el repositorio (https://github.com/daubesonntag-dotcom/daube-agent-bridge) 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 daubesonntag-dotcom/daube-agent-bridge?

+

Nuestro agente de seguridad ha analizado daubesonntag-dotcom/daube-agent-bridge y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene daubesonntag-dotcom/daube-agent-bridge?

+

daubesonntag-dotcom/daube-agent-bridge es mantenido por daubesonntag-dotcom. La última actividad registrada en GitHub es del 2026-09-12, con 6 issues abiertos.

¿Hay alternativas a daube-agent-bridge?

+

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

Despliega daube-agent-bridge 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: daubesonntag-dotcom/daube-agent-bridge
[![Featured on ClaudeWave](https://claudewave.com/api/badge/daubesonntag-dotcom-daube-agent-bridge)](https://claudewave.com/repo/daubesonntag-dotcom-daube-agent-bridge)
<a href="https://claudewave.com/repo/daubesonntag-dotcom-daube-agent-bridge"><img src="https://claudewave.com/api/badge/daubesonntag-dotcom-daube-agent-bridge" alt="Featured on ClaudeWave: daubesonntag-dotcom/daube-agent-bridge" width="320" height="64" /></a>

Más MCP Servers

Alternativas a daube-agent-bridge