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

750words-mcp

v0.4.0

Published

MCP server for 750 Words — connect your writing archive to AI tools like Claude, Cursor, ChatGPT, and more

Downloads

116

Readme

750words-mcp

An MCP server that connects your 750 Words writing archive to AI tools like Claude Desktop, Claude Code, Cursor, and more.

Search your entries, pull up what you wrote on any date, explore patterns in your writing — all through natural conversation with your AI tool.

Setup

You'll need a 750 Words Fancy membership and an access token. Generate one at 750words.com/account/mcp.

Claude Code (easiest)

claude mcp add 750words --scope user \
  -e MCP_750WORDS_ACCESS_TOKEN=your_access_token \
  -e MCP_750WORDS_REFRESH_TOKEN=your_refresh_token \
  -- npx 750words-mcp

Claude Desktop

Add to your claude_desktop_config.json (Settings > Developer > Edit Config):

{
  "mcpServers": {
    "750words": {
      "command": "npx",
      "args": ["750words-mcp"],
      "env": {
        "MCP_750WORDS_ACCESS_TOKEN": "your_access_token",
        "MCP_750WORDS_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

Then quit and reopen Claude Desktop.

Other tools

The MCP server works with any MCP-compatible client. Set the command to npx 750words-mcp and pass the two environment variables above.

Tools

| Tool | Description | |---|---| | search_entries | Full-text search across your archive. Supports AND, OR, exact phrases, and exclusion. | | get_entry | Get the complete text of an entry by date, with metadata and analysis. | | on_this_day | See what you wrote on this date in past years. | | get_writing_stats | Overview stats: total entries, words, streaks, completion rate. | | list_metadata | Browse your #hashtags, @mentions, and labels with counts. | | list_courses | See all courses you've participated in. | | request_export | Request a full journal export as a ZIP file. | | get_export_status | Check if your export is ready to download. |

Things to try

  • "What did I write about yesterday?"
  • "Search for entries about career change"
  • "What did I write on this day in past years?"
  • "Find entries where I mentioned @sarah"
  • "What are my writing stats for this year?"
  • "Export my entire journal"

Privacy

Your entries travel from 750 Words servers directly to your computer. When you ask your AI about your writing, that conversation happens entirely in your AI tool, using your own account. 750 Words never sees your questions or the AI's responses.

The access token is read-only — it can search and retrieve entries but cannot modify or delete anything.

Environment variables

| Variable | Required | Description | |---|---|---| | MCP_750WORDS_ACCESS_TOKEN | Yes | Your access token from 750words.com/account/mcp | | MCP_750WORDS_REFRESH_TOKEN | Yes | Your refresh token (used to automatically renew expired access tokens) | | MCP_750WORDS_API_URL | No | API endpoint override (defaults to production) |

License

MIT