Skip to main content
ClaudeWave

MCP server: convert PDF, DOCX, HTML, and URLs to clean, LLM-ready markdown

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/17/2026
Install in Claude Code / Claude Desktop
Method: NPX · agentmd-mcp
Claude Code CLI
claude mcp add agentmd-mcp -- npx -y agentmd-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "agentmd-mcp": {
      "command": "npx",
      "args": ["-y", "agentmd-mcp"],
      "env": {
        "AGENTMD_API_KEY": "<agentmd_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
AGENTMD_API_KEY
Casos de uso

Resumen de MCP Servers

# agentmd-mcp

MCP server for [AgentMD](https://www.getagentmd.com) — convert **PDF, DOCX, HTML, and URLs into clean, LLM-ready markdown**, with tables preserved and web-page boilerplate stripped.

Agents ingest documents constantly, and most document formats are hostile to language models. This gives your agent three tools that turn any of them into markdown it can actually read.

## Install

Get a free API key (50 conversions, no card) at https://www.getagentmd.com — or fully programmatically:

```bash
curl -X POST https://www.getagentmd.com/api/v1/keys/free \
  -H "Content-Type: application/json" -d '{"email": "you@example.com"}'
```

Then:

**Claude Code**

```bash
claude mcp add agentmd --env AGENTMD_API_KEY=<your-key> -- npx -y agentmd-mcp
```

**Any MCP client** (`mcp.json` / `claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "agentmd": {
      "command": "npx",
      "args": ["-y", "agentmd-mcp"],
      "env": { "AGENTMD_API_KEY": "<your-key>" }
    }
  }
}
```

**Docker**

```bash
docker build -t agentmd-mcp .
docker run -i --rm -e AGENTMD_API_KEY=<your-key> agentmd-mcp
```

The image runs the stdio server, so pass `-i`; the API key is supplied at run time with `-e` rather than baked into the image. To wire the container into an MCP client:

```json
{
  "mcpServers": {
    "agentmd": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "AGENTMD_API_KEY", "agentmd-mcp"],
      "env": { "AGENTMD_API_KEY": "<your-key>" }
    }
  }
}
```

**Remote (no install)** — the hosted server speaks streamable HTTP directly:

```bash
claude mcp add --transport http agentmd https://www.getagentmd.com/api/mcp \
  --header "Authorization: Bearer <your-key>"
```

## Tools

| Tool | Use it for |
| --- | --- |
| `convert_url_to_markdown` | A web page or a document at an http(s) URL |
| `convert_file_to_markdown` | A document on the local filesystem, by path |
| `convert_document_to_markdown` | Document bytes you already hold, as base64 |

All three return markdown, prefixed with the detected title and any warnings.

## Supported formats

- **PDF** — text extraction (scanned/image-only PDFs return a warning; OCR is on the roadmap)
- **DOCX** — headings, lists, and tables preserved
- **HTML / URLs** — main-article extraction, GFM tables, links resolved to absolute URLs
- **Markdown / plain text** — normalized passthrough

Limit: 25 MB per document.

## Configuration

| Variable | Required | Purpose |
| --- | --- | --- |
| `AGENTMD_API_KEY` | yes | Your API key |
| `AGENTMD_BASE_URL` | no | Point at a different deployment (self-hosting, staging) |

## Pricing

First 50 conversions free (per email, no card). After that, $0.002 per successful conversion, billed monthly. No per-seat licensing — you pay for calls your agents actually make.

## License

MIT (this client shim). The hosted service has its own terms.

Lo que la gente pregunta sobre agentmd-mcp

¿Qué es djrobson5/agentmd-mcp?

+

djrobson5/agentmd-mcp es mcp servers para el ecosistema de Claude AI. MCP server: convert PDF, DOCX, HTML, and URLs to clean, LLM-ready markdown Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-16.

¿Cómo se instala agentmd-mcp?

+

Puedes instalar agentmd-mcp clonando el repositorio (https://github.com/djrobson5/agentmd-mcp) 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 djrobson5/agentmd-mcp?

+

Nuestro agente de seguridad ha analizado djrobson5/agentmd-mcp 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 djrobson5/agentmd-mcp?

+

djrobson5/agentmd-mcp es mantenido por djrobson5. La última actividad registrada en GitHub es del 2026-09-16, con 0 issues abiertos.

¿Hay alternativas a agentmd-mcp?

+

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

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

Más MCP Servers

Alternativas a agentmd-mcp