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

@go-mental/mcp

v1.0.0

Published

MCP server for Mental thought capture system - capture thoughts from Claude Code and Cursor

Readme

@go-mental/mcp

MCP (Model Context Protocol) server for the Mental thought capture system. Capture thoughts, ideas, blockers, and questions directly from Claude Code or Cursor without leaving your workflow.

What is Mental?

Mental is a personal "mind centralization" system for developers who context-switch constantly. It captures thoughts as you work, tracks their status (open/resolved), and helps you close the loop on ideas, blockers, and questions.

Installation

# Run directly with npx (recommended)
npx @go-mental/mcp

# Or install globally
npm install -g @go-mental/mcp

Configuration

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | MENTAL_API_URL | URL of your Mental API server | http://localhost:3000 |

Claude Code (claude_desktop_config.json)

Add to your Claude Code configuration:

{
  "mcpServers": {
    "mental": {
      "command": "npx",
      "args": ["@go-mental/mcp"],
      "env": {
        "MENTAL_API_URL": "https://your-mental-api.example.com"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "mental": {
      "command": "npx",
      "args": ["@go-mental/mcp"],
      "env": {
        "MENTAL_API_URL": "https://your-mental-api.example.com"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | ping | Health check - returns pong to verify server is running | | capture_thought | Capture a thought with title, content, optional project and theme | | list_thoughts | List captured thoughts, optionally filtered by status | | get_thought | Get details of a specific thought by ID | | resolve_thought | Mark a thought as resolved with a resolution summary | | reopen_thought | Reopen a previously resolved thought | | add_followup | Add a follow-up update to an existing thought | | start_session | Start a capture session to group related thoughts | | end_session | End the current session and see summary |

Themes

When capturing thoughts, you can specify a theme:

  • blocker - Blocked, waiting on dependencies
  • concern - Worried, risk, uncertain
  • question - Asking how/why, unclear
  • idea - Suggestion, alternative, maybe

Example Usage

Once configured, you can ask Claude to:

  • "Capture a thought: I need to refactor the auth module"
  • "List my open thoughts"
  • "Mark thought abc123 as resolved - decided to use JWT"
  • "Start a session for the payments feature"

Links

License

MIT