ACTA Docs MCP
ACTA Docs MCP is a read-only Model Context Protocol (MCP) server. MCP-compatible clients (for example Claude, Cursor, or other assistants that support MCP) can query the official ACTA documentation through it.
When to use it: whenever you want an assistant to answer questions about ACTA using public, official, and up-to-date documentation - not guesses from general training data alone.
What it is
| Topic | Details |
|---|
| Package | @acta-team/docs-mcp |
| Authentication | None required (read-only public docs) |
This MCP server:
- Does not perform actions inside ACTA.
- Does not issue credentials.
- Does not sign transactions.
- Does not access wallets.
- Does not query private data.
- Does not modify smart contracts.
- Only provides read access to public ACTA documentation.
Quick installation
Run the server directly with npx:
npx -y @acta-team/docs-mcp
Most users should use this command without changes.
MCP client configuration
Use this configuration in an MCP-compatible client:
{
"mcpServers": {
"acta-docs": {
"command": "npx",
"args": ["-y", "@acta-team/docs-mcp"]
}
}
}
After saving the configuration, restart or reload your MCP client.
Documentation updates
When it starts, the server loads the latest documentation from:
https://docs.acta.build/api/mcp/docs-data
- If ACTA documentation changes, users do not need to update the npm package. Restarting or reloading the MCP client is enough for the server process to load the updated documentation.
- New npm versions are only needed when the MCP server code changes.
- If the remote endpoint fails, the server uses the documentation copy bundled in the npm package.
Advanced configuration
| Variable | Purpose |
|---|
ACTA_DOCS_MCP_OFFLINE=1 | Skip the remote fetch and use bundled documentation only. |
ACTA_DOCS_MCP_DATA_URL | Use a different remote docs JSON URL. |
Use ACTA_DOCS_MCP_DATA_URL only if you completely trust the configured source. The AI client will use that content as context to answer questions about ACTA.
| Tool | What it does |
|---|
list_acta_docs | Lists the available documentation pages. |
read_acta_doc | Reads a specific page using its slug and locale. |
search_acta_docs | Searches content inside the ACTA documentation. |
Available resources
Documentation pages are exposed using this URI format:
acta-docs://{locale}/{slug}
Currently supported locales:
When to use this MCP
Use this MCP to ask about:
- What ACTA is.
- How credential issuance and verification work.
- How to integrate with the ACTA API or SDK.
- How the documented ACTA architecture works.
- Which endpoints, flows, or concepts are explained in the official documentation.
This MCP is designed for documentation and technical support. It does not replace a direct integration with the ACTA API.
ACTA Docs MCP (Español)
ACTA Docs MCP es un servidor Model Context Protocol (MCP) de solo lectura. Los clientes compatibles con MCP (por ejemplo Claude, Cursor u otros asistentes con soporte MCP) pueden consultar la documentación oficial de ACTA a través de él.
Cuándo usarlo: cuando quieras que un asistente responda sobre ACTA apoyándose en documentación pública, oficial y actualizada, y no solo en conocimiento genérico del modelo.
Qué es
| Tema | Detalle |
|---|
| Paquete | @acta-team/docs-mcp |
| Autenticación | No requiere API key (solo lectura, docs públicas) |
Este servidor MCP:
- No realiza acciones dentro de ACTA.
- No emite credenciales.
- No firma transacciones.
- No accede a wallets.
- No consulta datos privados.
- No modifica smart contracts.
- Solo proporciona acceso de lectura a documentación pública de ACTA.
Instalación rápida
Ejecuta el servidor directamente con npx:
npx -y @acta-team/docs-mcp
La mayoría de usuarios debería usar este comando sin cambios.
Configuración del cliente MCP
Usa esta configuración en un cliente compatible con MCP:
{
"mcpServers": {
"acta-docs": {
"command": "npx",
"args": ["-y", "@acta-team/docs-mcp"]
}
}
}
Después de guardar la configuración, reinicia o recarga tu cliente MCP.
Actualizaciones de documentación
Al iniciar, el servidor carga la documentación más reciente desde:
https://docs.acta.build/api/mcp/docs-data
- Si cambia la documentación de ACTA, normalmente no hace falta actualizar el paquete npm. Basta con reiniciar o recargar el cliente MCP para que el proceso del servidor cargue la documentación actualizada.
- Las nuevas versiones npm solo son necesarias cuando cambia el código del servidor MCP.
- Si el endpoint remoto falla, el servidor usa la copia de documentación incluida en el paquete npm.
Configuración avanzada
| Variable | Para qué sirve |
|---|
ACTA_DOCS_MCP_OFFLINE=1 | Omite la descarga remota y usa solo la documentación incluida en el paquete. |
ACTA_DOCS_MCP_DATA_URL | Usa otra URL remota para el JSON de documentación. |
Usa ACTA_DOCS_MCP_DATA_URL solo si confías completamente en la fuente configurada. El cliente de IA usará ese contenido como contexto para responder preguntas sobre ACTA.
Herramientas disponibles
| Herramienta | Qué hace |
|---|
list_acta_docs | Lista las páginas de documentación disponibles. |
read_acta_doc | Lee una página específica usando su slug e idioma. |
search_acta_docs | Busca contenido dentro de la documentación de ACTA. |
Recursos disponibles
Las páginas de documentación se exponen usando este formato de URI:
acta-docs://{locale}/{slug}
Los idiomas soportados actualmente son:
Cuándo usar este MCP
Usa este MCP para preguntar sobre:
- Qué es ACTA.
- Cómo funciona la emisión y verificación de credenciales.
- Cómo integrarse con la API o SDK de ACTA.
- Cómo funciona la arquitectura documentada de ACTA.
- Qué endpoints, flujos o conceptos están explicados en la documentación oficial.
Este MCP está diseñado para documentación y soporte técnico. No reemplaza una integración directa con la API de ACTA.