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

@anuraghq/neuron-mcp-server

v0.2.0

Published

Neuron Context Engine — MCP server for Cursor, Claude, Antigravity, and any MCP client

Downloads

1,515

Readme

@anuraghq/neuron-mcp-server

Neuron Context Engine MCP server — structured memory for Cursor, Claude Desktop, Antigravity, and any MCP client.

npm: @anuraghq/[email protected]

One-command install

Get your API key from neuron-azure.vercel.app → MCP Setup.

npx @anuraghq/neuron-mcp-server init --api-key nrn_your_key_here

Or run interactively — paste your key when prompted:

npx @anuraghq/neuron-mcp-server init

Restart your MCP client(s). Works with Cursor, Claude Desktop, and any MCP host.

Install targets (default: Cursor + Claude)

# Both Cursor (~/.cursor/mcp.json) and Claude Desktop
npx @anuraghq/neuron-mcp-server init --api-key nrn_your_key_here

# Cursor only
npx @anuraghq/neuron-mcp-server init --cursor --api-key nrn_your_key_here

# Claude Desktop only (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json)
npx @anuraghq/neuron-mcp-server init --claude --api-key nrn_your_key_here

# Print JSON for any other MCP client
npx @anuraghq/neuron-mcp-server init --stdout --api-key nrn_your_key_here

With NEURON_API_KEY, the MCP server proxies all tool calls to the hosted Neuron API. Supabase and Groq credentials stay on the server — customers only need one key.

Tools (31)

Remember

remember_fact, remember_decision, remember_pattern, remember_bug, remember_component, remember_api, remember_task, remember_architecture, remember_database, remember_note, remember_file, remember_conversation, remember_relationship

Retrieve

search_memory, get_project_context, get_task_context, get_file_context, get_architecture, find_related, summarize_project

Manage

forget_memory, merge_memory, find_duplicates, condense_memories

Groq AI (server-side)

| Tool | Description | |------|-------------| | extract_memories | Extract + save memories from a conversation | | preview_memories | Preview extraction without saving | | extract_from_diff | Extract learnings from a git diff | | ask_project | Q&A over project memories | | suggest_context | Recommend memories for a task | | suggest_tags | Auto-tag a memory | | suggest_relationships | Propose knowledge graph links |

Manual config

Add to your editor's MCP config (e.g. ~/.cursor/mcp.json, Claude Desktop config, or Antigravity settings):

{
  "mcpServers": {
    "neuron": {
      "command": "npx",
      "args": ["-y", "@anuraghq/neuron-mcp-server"],
      "env": {
        "NEURON_API_KEY": "nrn_your_key_here"
      }
    }
  }
}

Publishing (maintainers)

cd packages/mcp-server
NPM_PUBLISH_NAME=@anuraghq/neuron-mcp-server pnpm publish:npm

See docs/publish-mcp.md in the monorepo.

Local development

pnpm --filter @neuron/mcp-server build
node packages/mcp-server/dist/index.js

For direct Supabase mode (no hosted API), set SUPABASE_SERVICE_ROLE_KEY and NEURON_PROJECT_ID in .env.