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

aimlinterviews-mcp

v0.1.1

Published

MCP server that turns AI assistants into spoiler-safe AI/ML interview tutors using the AIMLInterviews curriculum

Readme

AIMLInterviews MCP Server

aimlinterviews-mcp turns MCP-compatible AI assistants into interview coaches backed by the local AIMLInterviews curriculum.

It discovers practice problems, provides progressive hints, reviews candidate answers, and builds role- or company-focused preparation plans. The tutor follows a no-spoilers policy: problem retrieval excludes reference answers, hints provide progressively deeper process guidance, and answer review never executes submitted code.

Requirements

  • Node.js 20 or newer
  • A local clone of the AIMLInterviews repository
  • An MCP-compatible client such as Claude Code or Codex

Quick start

Clone the repository first:

git clone https://github.com/alirezadir/AIMLInterviews.git
cd AIMLInterviews

Then connect the tutor from the repository directory.

Claude Code

claude mcp add aimlinterviews -- npx -y aimlinterviews-mcp

Codex

codex mcp add aimlinterviews -- npx -y aimlinterviews-mcp

The server searches its working directory and parent directories for the clone. For clients launched elsewhere, configure the repository path explicitly:

{
  "mcpServers": {
    "aimlinterviews": {
      "command": "npx",
      "args": ["-y", "aimlinterviews-mcp"],
      "env": {
        "AIMLINTERVIEWS_ROOT": "/path/to/your/AIMLInterviews/clone"
      }
    }
  }
}

AIMLINTERVIEWS_ROOT must point to the repository root that contains README.md and src/.

Tools

| Tool | Purpose | | --- | --- | | get_server_status | Show the repository root, source commit, and catalog counts | | list_problems | Filter practice problems by area, difficulty, tag, company mention, or query | | get_problem | Retrieve a prompt and source metadata without its answer | | get_hint | Request spoiler-safe hints at levels 1, 2, and 3 | | search_curriculum | Find relevant chapter sections and source locations | | get_learning_path | Build a role- and experience-based study sequence | | get_company_prep | Build a role-based company preparation plan | | review_answer | Review reasoning against an interview rubric without executing code |

The server also provides the interview_tutor, mock_interview, and study_plan prompts, plus aimlinterviews://catalog and aimlinterviews://tutor-policy resources.

Content and safety model

  • The server reads public Markdown under src/; it does not bundle a duplicate question bank.
  • Stable catalog IDs are derived from the source path and title.
  • Every problem and section includes its source path, line, and Git commit.
  • Repository reads are path-confined, size-limited, and skip symbolic links.
  • Company plans are curriculum-based role recommendations, not claims about private or current company interview questions.
  • Candidate code is treated as text and is never executed.
  • MCP protocol messages use stdout; diagnostics use stderr.

Restart the MCP client after pulling curriculum updates so the server rebuilds its in-memory catalog.

Development

cd MCP
npm install
npm test
npm pack --dry-run

Run the compiled server directly:

AIMLINTERVIEWS_ROOT="$(cd .. && pwd)" npm start

Inspect it interactively:

npm run inspect

Publishing requires npm access to the aimlinterviews-mcp package:

npm login
npm publish --access public

Design reference

The tool categories and tutor workflow were informed by the TorchLeet MCP server. This implementation is original and reads the AIMLInterviews curriculum rather than copying TorchLeet content.