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

glintlint-mcp

v1.7.0

Published

MCP Server for Glintlint - manage your tasks and diary with AI assistants

Downloads

773

Readme

Glintlint MCP Server

MCP (Model Context Protocol) server for Glintlint — manage your tasks and diary with AI assistants like Claude Desktop, Cursor, and more.

Features

  • 13 tools for task & diary management
  • Task tools: list, create, update, complete, delete tasks + groups + stats + today summary
  • Diary tools: list, create, update, delete diary entries + get today's diary
  • Works with Claude Desktop, Cursor, and any MCP-compatible AI tool

Prerequisites

  • Node.js 20+
  • A Glintlint account with an API key (get one from Settings > API Keys)

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "glintlint": {
      "command": "npx",
      "args": ["-y", "glintlint-mcp"],
      "env": {
        "GLINTLINT_API_KEY": "glint_your_api_key_here"
      }
    }
  }
}

Cursor

Add to your MCP settings:

{
  "mcpServers": {
    "glintlint": {
      "command": "npx",
      "args": ["-y", "glintlint-mcp"],
      "env": {
        "GLINTLINT_API_KEY": "glint_your_api_key_here"
      }
    }
  }
}

Available Tools

Task Tools

| Tool | Description | |------|-------------| | list_tasks | List tasks with filters (date, status, priority, group, time block) | | create_task | Create a new task with title, date, priority, time block, etc. | | update_task | Update any field of an existing task | | complete_task | Mark a task as completed | | delete_task | Permanently delete a task | | get_today_summary | Get today's tasks grouped by time block + statistics | | list_groups | List all task groups | | get_stats | Get completion rate, priority distribution, overdue count |

Diary Tools

| Tool | Description | |------|-------------| | list_diary | List diary entries with filters (date range, mood, tag, pinned) | | create_diary | Create a new diary entry (one per day, auto-sets created_by: "mcp") | | update_diary | Update any field of an existing diary entry | | delete_diary | Permanently delete a diary entry | | get_today_diary | Get today's diary entry (useful for checking before appending) |

Usage Examples

Once configured, you can ask your AI assistant:

Tasks:

  • "What are my tasks for today?"
  • "Create a task: review PR tomorrow morning, high priority"
  • "Mark the task about writing docs as complete"
  • "Show me my task statistics for this week"

Diary:

  • "What did I write in my diary today?"
  • "Create a diary entry for today: had a productive day, finished the API refactor"
  • "Show me my diary entries from last week"
  • "Add a summary to today's diary entry"

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | GLINTLINT_API_KEY | Yes | — | Your API key (starts with glint_) | | GLINTLINT_BASE_URL | No | https://www.glintlint.com | API base URL |

API Key Scopes

Your API key needs the following scopes for full functionality:

  • tasks:read — list and view tasks
  • tasks:write — create, update, delete tasks
  • groups:read — list groups
  • stats:read — view statistics
  • diary:read — list and view diary entries
  • diary:write — create, update, delete diary entries

License

MIT