Sign In

@acta-team/docs-mcp

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@acta-team/docs-mcp

MCP server for ACTA documentation.

latest
Source
npmnpm
Version
0.1.3
Version published
Weekly downloads
103
-5.5%
Maintainers
2
Weekly downloads
 
Created
Source

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

TopicDetails
Package@acta-team/docs-mcp
AuthenticationNone 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

VariablePurpose
ACTA_DOCS_MCP_OFFLINE=1Skip the remote fetch and use bundled documentation only.
ACTA_DOCS_MCP_DATA_URLUse 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.

Available tools

ToolWhat it does
list_acta_docsLists the available documentation pages.
read_acta_docReads a specific page using its slug and locale.
search_acta_docsSearches content inside the ACTA documentation.

Available resources

Documentation pages are exposed using this URI format:

acta-docs://{locale}/{slug}

Currently supported locales:

  • en
  • es

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

TemaDetalle
Paquete@acta-team/docs-mcp
AutenticaciónNo 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

VariablePara qué sirve
ACTA_DOCS_MCP_OFFLINE=1Omite la descarga remota y usa solo la documentación incluida en el paquete.
ACTA_DOCS_MCP_DATA_URLUsa 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

HerramientaQué hace
list_acta_docsLista las páginas de documentación disponibles.
read_acta_docLee una página específica usando su slug e idioma.
search_acta_docsBusca 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:

  • en
  • es

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.

Keywords

mcp

FAQs

Package last updated on 30 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts