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

journalowl-mcp

v0.2.0

Published

MCP server for JournalOwl - AI-powered journaling integration for Claude Code, Cursor, and ChatGPT Agents

Readme

@mindfulabai/journalowl-mcp

MCP (Model Context Protocol) server for JournalOwl - AI-powered journaling integration for Claude Code, Cursor, and ChatGPT Agents.

Features

  • Create journal entries directly from your AI assistant
  • Search and browse your journal entries
  • Access weekly reviews with emotional trends and insights
  • Get personalized suggestions based on your writing style
  • Secure API key authentication with scoped permissions

Installation

npx @mindfulabai/journalowl-mcp

Or install globally:

npm install -g @mindfulabai/journalowl-mcp

Configuration

1. Get your API Key

  1. Log in to JournalOwl
  2. Go to Settings > API Keys
  3. Create a new API key with the scopes you need:
    • journal:read - Read your journal entries
    • journal:write - Create new entries
    • review:read - Access weekly reviews
    • profile:read - Access your profile and writing style

2. Configure Claude Code

Add to your ~/.claude.json:

{
  "mcpServers": {
    "journalowl": {
      "command": "npx",
      "args": ["@mindfulabai/journalowl-mcp"],
      "env": {
        "JOURNALOWL_API_KEY": "jowl_sk_your_api_key_here"
      }
    }
  }
}

3. Configure Cursor

Add to your Cursor MCP settings:

{
  "journalowl": {
    "command": "npx",
    "args": ["@mindfulabai/journalowl-mcp"],
    "env": {
      "JOURNALOWL_API_KEY": "jowl_sk_your_api_key_here"
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | journal_create_entry | Create a new journal entry | | journal_list_entries | List entries with filters | | journal_get_entry | Get entry details and analysis | | journal_search | Search entries by text | | journal_get_weekly_review | Get weekly review and insights | | journal_get_writing_style | Get writing style preferences |

Available Resources

| URI | Description | |-----|-------------| | journalowl://user/profile | User profile and journaling stats | | journalowl://user/recent-entries | Recent entries metadata |

Example Usage

Once configured, you can use JournalOwl directly in your AI conversations:

"Create a journal entry about my productive day at work"

"Show me my journal entries from last week"

"What insights does my weekly review show?"

"Search my journal for entries about anxiety"

Development

# Clone the repository
git clone https://github.com/mindfulabai/journalowl-mcp.git
cd journalowl-mcp

# Install dependencies
npm install

# Build
npm run build

# Run in development mode
npm run dev

# Test with MCP Inspector
npm run inspector

Security

  • API keys are transmitted securely via HTTPS
  • Keys are hashed in our database (we never store the plain key)
  • You can revoke keys at any time from JournalOwl settings
  • Scopes limit what each key can access

Support

License

MIT