npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sistemasieq/akdd-mcp

v2.3.0

Published

MCP server for Agentic KDD — 47 tools

Downloads

95

Readme

akdd-mcp v2.0.0

MCP server para Agentic KDD — expone 23 tools a Cursor, Claude Code, VS Code y cualquier cliente MCP.

Instalación

npm install -g @sistemasieq/akdd-mcp

O usar directamente con npx (sin instalar):

npx @sistemasieq/akdd-mcp

Configuración en Cursor

Crear o actualizar .cursor/mcp.json en el proyecto:

{
  "mcpServers": {
    "agentic-kdd": {
      "command": "npx",
      "args": ["akdd-mcp"],
      "env": {
        "PROJECT_ROOT": "${workspaceFolder}"
      }
    }
  }
}

Alternativa con ruta local (si tienes el archivo en el proyecto):

{
  "mcpServers": {
    "agentic-kdd": {
      "command": "node",
      "args": [".agentic/grafo/mcp-server.cjs"],
      "env": {
        "PROJECT_ROOT": "${workspaceFolder}"
      }
    }
  }
}

Configuración en Claude Code

# Agregar al proyecto
claude mcp add agentic-kdd -- node .agentic/grafo/mcp-server.cjs

# O con npx
claude mcp add agentic-kdd -- npx @sistemasieq/akdd-mcp

O en ~/.claude/mcp.json:

{
  "mcpServers": {
    "agentic-kdd": {
      "command": "npx",
      "args": ["akdd-mcp"],
      "env": {
        "PROJECT_ROOT": "/ruta/al/proyecto"
      }
    }
  }
}

Backward compatibility

Si el proyecto tiene Agentic KDD v2.x (sin módulos v3.2), el servidor arranca con las tools disponibles. Al iniciar muestra qué tools están activas y cuáles necesitan actualización.

[Agentic KDD MCP v2.0.0] ROOT=/mi/proyecto | 7/23 tools disponibles
  Tools no disponibles (módulos v3.x faltantes): ast_impact, ast_index, spec_waves...
  Para habilitarlas: actualizar Agentic KDD a v3.2 y copiar los archivos .cjs

Para actualizar a v3.2: descargar el ZIP de Agentic KDD y copiar los .cjs a .agentic/grafo/.

Las 23 tools

| Tool | Descripción | |------|-------------| | grafo_buscar | Búsqueda híbrida en 4 capas de memoria CoALA | | registrar_episodio | Registra episodio crudo en memoria episódica | | grafo_sync | Sincroniza markdown → SQLite | | grafo_impacto | Impacto semántico de una entidad | | registrar_entidad | Registra entidad en grafo semántico | | grafo_coala | Stats completo de las 4 capas CoALA | | grafo_predecir | Estimación de riesgo pre-tarea | | ast_impact | Impacto completo (AST + causal + knowledge) | | ast_index | Indexar proyecto en grafo AST | | ast_symbols | Símbolos de un archivo | | impact_precheck | Pre-check de impacto para un módulo | | impact_diff | Impacto combinado de varios archivos | | spec_waves | Waves de ejecución del spec | | spec_status | Estado del spec (% completado) | | spec_create | Crear spec nuevo (feature/bugfix) | | knowledge_query | Consultar ADRs y gotchas | | adr_ingest | Ingestar ADRs en knowledge base | | causal_add | Registrar edge causal | | causal_query | Consultar historial causal | | decision_trail | Trail completo de un ciclo | | decision_why | Explicar por qué existe algo | | recent_ciclos | Últimos N ciclos | | metrics_summary | KPIs del proyecto | | health_check | Diagnóstico del sistema | | memory_audit | Auditoría de memoria | | memory_forget | Olvidar entrada con razón | | verdad_vigente | Solo memoria vigente hoy |

Requisitos

  • Node.js 18+
  • Proyecto con Agentic KDD instalado (.agentic/ presente)
  • SQLite: better-sqlite3 (recomendado) o Node.js 22+ (node:sqlite nativo)

Changelog

v2.0.0

  • +16 tools nuevas (AST, specs, causal edges, decision trail, metrics, health, memory audit)
  • Backward compatible con proyectos Agentic v2.x
  • Detección automática de PROJECT_ROOT subiendo directorios
  • Log de tools disponibles vs no disponibles al inicio

v1.0.2

  • 7 tools core: grafo_buscar, registrar_episodio, grafo_sync, grafo_impacto, registrar_entidad, grafo_coala, grafo_predecir