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

@neuranix/mcp-server

v1.3.6

Published

Neuranix MCP Server — autonomous persistent memory for IDE AI agents (Cursor, VS Code, Claude Code, Windsurf)

Readme

@neuranix/mcp-server

Plug-in MCP de memória persistente autônoma para agentes de IA em qualquer IDE compatível com MCP.

Produção: https://neuranix.com.br/api/neuranix · Versão: 1.3.6

O que já vem incluído (sem configurar regras manualmente)

Ao importar o MCP, o agente recebe automaticamente:

  • Instruções do servidor (instructions) — protocolo: context no início, recall antes de tarefas, store/checkpoint no fim
  • Tools com alwaysLoad: trueneuranix_context, neuranix_recall, neuranix_store, neuranix_checkpoint, neuranix_status
  • Resourcesneuranix://agent-guide, neuranix://ide-setup
  • Promptssession_start, before_task, save_decision, session_end, after_compaction, health_check

O usuário não precisa pedir para salvar ou recuperar memória.

Ciclo automático

| Momento | Tool / Prompt | |---------|---------------| | Início da sessão / após compactação | neuranix_context / session_start | | Antes de refactor, debug, review | neuranix_recall / before_task | | Após decisão, fix ou padrão | neuranix_store / save_decision | | Fim de sessão | neuranix_checkpoint / session_end | | Erro de API ou diagnóstico | neuranix_status / health_check |

Sempre passe workspace_path (absoluto) e task_context (foco da conversa).

Campos de store (v1.3.2+)

| Campo | Descrição | |-------|-----------| | type | decision, concept, code_snippet, etc. | | priority | 1 (baixa) a 5 (crítica) — regras invioláveis → 5 | | tags | Lista de tags pesquisáveis | | summary | Resumo curto opcional | | protocol_version | Tag de versão de protocolo (ex. genesis-v1) | | supersedes_id | UUID da memória obsoleta que esta substitui |

Actions no /memory (v1.3.3+)

list, update e delete via action no body (além de context, store, recall). GET /memory lista memórias do projeto.

Instalação (2 passos)

  1. Cole a configuração MCP do Dashboard Neuranix
  2. Reinicie o IDE
{
  "mcpServers": {
    "neuranix": {
      "command": "npx",
      "args": ["-y", "@neuranix/mcp-server"],
      "env": {
        "NEURANIX_API_URL": "https://neuranix.com.br/api/neuranix",
        "NEURANIX_API_KEY": "ak_sua_chave_aqui"
      },
      "alwaysLoad": true
    }
  }
}

Reforço opcional no repositório (todos os IDEs)

npx -y @neuranix/mcp-server setup

Grava AGENTS.md, .cursor/rules/neuranix.mdc, CLAUDE.md, .github/copilot-instructions.md, .windsurfrules.

Use --force para sobrescrever arquivos existentes.

Claude Code

claude mcp add --scope project neuranix \
  --env NEURANIX_API_URL=https://neuranix.com.br/api/neuranix \
  --env NEURANIX_API_KEY=ak_sua_chave \
  -- npx -y @neuranix/mcp-server

Prompts MCP (agente pode invocar automaticamente):

| Prompt | Uso | |--------|-----| | /mcp__neuranix__session_start | Contexto no início | | /mcp__neuranix__before_task | Recall antes de tarefa | | /mcp__neuranix__save_decision | Gravar decisão | | /mcp__neuranix__session_end | Checkpoint de fim de sessão | | /mcp__neuranix__after_compaction | Recarregar após compactação | | /mcp__neuranix__health_check | Diagnóstico de API |

Variáveis de ambiente

| Variável | Descrição | |----------|-----------| | NEURANIX_API_URL | URL base da API | | NEURANIX_API_KEY | Chave API (ak_...) — obrigatória | | NEURANIX_ENV | local para http://127.0.0.1:8000/api/neuranix | | NEURANIX_ALLOW_CUSTOM_HOST | true para hosts de dev (ngrok) |

Licença

MIT