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

@amplis/mcp-server

v0.4.0

Published

MCP server for AMPLIS - connect Claude, Cursor, and other AI tools to your live consulting data

Readme

AMPLIS MCP Server

Connect Claude, Cursor, and other AI tools to your live AMPLIS consulting data -- projects, people, clients, timesheets, knowledge base, and more.

Quick Start

1. Authenticate

npx @amplis/mcp-server login

Your browser will open for secure authentication via your AMPLIS account. Credentials are stored at ~/.amplis/credentials.json with strict file permissions.

Alternatively, paste an API key manually:

npx @amplis/mcp-server login-key

2. Configure Your AI Tool

Claude Desktop -- add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "amplis": {
      "command": "npx",
      "args": ["-y", "@amplis/mcp-server"]
    }
  }
}

Claude Code (CLI):

claude mcp add amplis npx @amplis/mcp-server

Cursor -- add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "amplis": {
      "command": "npx",
      "args": ["-y", "@amplis/mcp-server"]
    }
  }
}

What's Included

| Type | Count | Examples | |------|-------|---------| | Tools | 35 | Create tasks, log time, manage clients, search knowledge, track credentials, store memories, log decisions | | Resources | 36 | Projects, pipeline, people, clients, timesheets, capabilities, availability, utilization, knowledge base | | Prompts | 13 | Weekly status, project health, compliance check, meeting prep, invoice draft, risk assessment |

CLI Commands

npx @amplis/mcp-server login       # Browser-based login (recommended)
npx @amplis/mcp-server login-key   # Paste API key manually
npx @amplis/mcp-server status      # Show authentication status
npx @amplis/mcp-server logout      # Remove stored credentials
npx @amplis/mcp-server help        # Show help

Environment Variables

| Variable | Description | |----------|-------------| | AMPLIS_ORG_ID | Override org ID (skips credentials file -- useful for CI/Docker) | | AMPLIS_USER_ID | Override user ID for audit logging | | AMPLIS_API_URL | API base URL (default: https://app.amplis.com.au) |

Security

  • API keys follow the format amplis_ + 64 hex characters (32 random bytes)
  • Keys are SHA-256 hashed before storage in the database -- the full key is shown once at creation
  • Local credentials stored with 0600 file permissions (owner read/write only)
  • Browser login uses state tokens for CSRF protection
  • Keys support permission scopes: read, write, admin
  • Keys can be rotated atomically in the AMPLIS web app under Settings

Documentation

Full API reference with all tools, resources, and prompts: amplis.com.au/docs

License

MIT