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

deeppath-mcp

v1.0.6

Published

DeepPath MCP server for Anthropic integration

Readme

DeepPath MCP Server

This MCP server integrates with DeepPath's API to provide task and goal management functionality for Anthropic models.

Features

  • Task management (create, get, update)
  • Goal management (create, get, update)
  • Note management (create, get)
  • Automation rules

Setup

  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Get your DeepPath API key:

You can use the included helper script to open the DeepPath API key page:

npm run get-api-key
  1. Configure the MCP server:

You can configure the MCP server manually or use the included setup script:

Automatic Setup (Recommended)

Run the setup script and follow the prompts:

npm run setup

The script will:

  • Ask for your DeepPath API key
  • Ask for the DeepPath base URL (default: http://localhost:3000)
  • Let you choose which application to configure (VSCode, Claude Desktop, or both)
  • Create or update the configuration file(s)

Manual Setup

For VSCode Claude extension, edit the file at: ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json

For Claude desktop app, edit: ~/Library/Application Support/Claude/claude_desktop_config.json

Add the following configuration:

{
  "mcpServers": {
    "deeppath": {
      "command": "node",
      "args": ["/absolute/path/to/deeppath-mcp/build/index.js"],
      "env": {
        "DEEPPATH_API_KEY": "dp_your_api_key_here",
        "DEEPPATH_BASE_URL": "http://localhost:3000"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Replace /absolute/path/to/deeppath-mcp with the absolute path to this project and dp_your_api_key_here with your DeepPath API key.

Usage

Once configured, the MCP server will be available to Anthropic models. You can use it to:

  • Get project information
  • Manage tasks (create, get, update)
  • Manage goals (create, get, update)
  • Manage notes (create, get)
  • Get automation rules

Example commands:

  • "Create a new task called 'Finish project documentation'"
  • "Show me my active goals"
  • "Create a note about the project requirements"

Development and Publishing

Publishing to npm

The package is available on npm registry as deeppath-mcp. You can install it globally:

npm install -g deeppath-mcp

Or use it with npx without installation:

npx deeppath-mcp

Automatic Publishing

This repo uses GitHub Actions for automatic versioning and publishing to npm following the Git Flow workflow:

  1. When a tag with format v*.*.* (e.g., v1.2.3) is pushed to the repository, the workflow is triggered
  2. The version from the tag is extracted and used to update package.json
  3. The project is built and published to npm
  4. A GitHub release is automatically created for the tag

To publish a new version:

  1. Follow Git Flow process (complete feature branches, merge to develop, create release branch)
  2. Merge release branch to master
  3. Create and push a tag with proper semantic versioning:
    git tag v1.2.3
    git push origin v1.2.3
  4. Alternatively, manually trigger the workflow and specify a version number

Note: Make sure to add your npm token as a GitHub repository secret named NPM_TOKEN before using this feature.