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

@cben0ist/ascend-mcp-server

v1.0.1

Published

MCP server for Ascend — connect Claude to your job applications, resume, and analytics

Downloads

327

Readme

Ascend MCP Server

Connect Claude (Desktop, Code, or agents) to your Ascend job search data.

What it does

Gives Claude read-only access to:

  • Job applications — list, filter by status, get full details with AI analysis
  • Resume — your base resume in JSON Resume format
  • Dashboard stats — totals, interview counts, match scores
  • Analytics — trends and period-over-period comparisons

Setup

1. Get your API key

  1. Open Ascend → Settings → Claude AI Integration
  2. Click Generate Key and copy the key (shown once)

2. Install dependencies

cd mcp
npm install

3. Configure Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ascend": {
      "command": "node",
      "args": ["/absolute/path/to/ascend/mcp/src/index.js"],
      "env": {
        "ASCEND_API_URL": "https://ascend.workingensemble.ca/api/mcp",
        "ASCEND_API_KEY": "your_key_here"
      }
    }
  }
}

4. Configure Claude Code

claude mcp add ascend \
  -e ASCEND_API_URL=https://ascend.workingensemble.ca/api/mcp \
  -e ASCEND_API_KEY=your_key_here \
  -- node /absolute/path/to/ascend/mcp/src/index.js

Local development

ASCEND_API_URL=http://localhost:4000/api/mcp \
ASCEND_API_KEY=your_key_here \
node mcp/src/index.js

Test with MCP Inspector

cd mcp
ASCEND_API_URL=http://localhost:4000/api/mcp ASCEND_API_KEY=your_key \
  npx @modelcontextprotocol/inspector node src/index.js

Available Tools

| Tool | Description | |------|-------------| | list_applications | List applications with optional status filter | | get_application | Full details for one application including AI analysis | | get_resume | Your base resume in JSON Resume format | | get_dashboard_stats | Total applications, interviews, offers, avg match score | | get_analytics_overview | Trends and analytics for a date range |

Example prompts

  • "How many job applications do I have in total?"
  • "Show me applications where I'm currently interviewing"
  • "What's my average job match score?"
  • "Summarize my resume"
  • "How has my application rate changed over the last month?"