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

@micka33/ask-scientist

v0.2.0

Published

MCP server for rate-limited consultations with a specialized scientist powered by OpenAI GPT-5.5 Pro.

Readme

Ask Scientist

Summary

Ask Scientist is a local stdio MCP server for rate-limited questions to a specialized scientist. It uses OpenAI gpt-5.5-pro, includes OpenAI web search, and defaults to 3 accepted questions per 6-hour sliding window. The quota limit and window length are configurable.

1. how to install

Claude

  1. Download ask-scientist-<version>.mcpb from the latest GitHub Release.
  2. Install the .mcpb file in Claude Desktop.
  3. Enter your OpenAI API key and state directory when prompted.

Codex

  1. Export your OpenAI API key in the shell that starts Codex:

    export OPENAI_API_KEY=REPLACE_WITH_OPENAI_API_KEY
  2. Add this server to ~/.codex/config.toml:

    [mcp_servers.ask_scientist]
    command = "npx"
    args = ["-y", "@micka33/ask-scientist@latest"]
    env_vars = ["OPENAI_API_KEY"]
    
    [mcp_servers.ask_scientist.env]
    ASK_SCIENTIST_STATE_DIR = "/Users/you/.ask-scientist"
    ASK_SCIENTIST_QUOTA_LIMIT = "3"
    ASK_SCIENTIST_QUOTA_WINDOW_HOURS = "6"
  3. Restart Codex, then use /mcp to confirm the server is available.

Cursor

  1. Open Cursor's MCP configuration, usually ~/.cursor/mcp.json.

  2. Add the server:

    {
      "mcpServers": {
        "ask_scientist": {
          "command": "npx",
          "args": ["-y", "@micka33/ask-scientist@latest"],
          "env": {
            "OPENAI_API_KEY": "REPLACE_WITH_OPENAI_API_KEY",
            "ASK_SCIENTIST_STATE_DIR": "/Users/you/.ask-scientist",
            "ASK_SCIENTIST_QUOTA_LIMIT": "3",
            "ASK_SCIENTIST_QUOTA_WINDOW_HOURS": "6"
          }
        }
      }
    }
  3. Save the file and restart Cursor.

For more install detail, see INSTALL.md.

2. Tools

  • ask_scientist_instant: asks a question and polls up to 20 minutes.
  • ask_scientist_deferred: submits a one-request Batch API job.
  • check_scientist_request: checks an instant or deferred request.
  • get_scientist_quota: shows remaining quota and reset time.

Only accepted instant/deferred questions consume quota.

3. Configuration

Required:

  • OPENAI_API_KEY
  • ASK_SCIENTIST_STATE_DIR

Optional:

  • ASK_SCIENTIST_MODEL, default gpt-5.5-pro
  • ASK_SCIENTIST_INSTANT_TIMEOUT_MS, default 1200000
  • ASK_SCIENTIST_QUOTA_LIMIT, default 3
  • ASK_SCIENTIST_QUOTA_WINDOW_HOURS, default 6

For example, to allow 3 accepted questions per 24 hours:

[mcp_servers.ask_scientist.env]
ASK_SCIENTIST_QUOTA_LIMIT = "3"
ASK_SCIENTIST_QUOTA_WINDOW_HOURS = "24"

Keep MCP config files private. Direct config storage can expose API keys to the local client configuration and launched server environment.

4. Development

npm install
npm run check

The test suite uses fake OpenAI clients and does not make live API calls.

Release tags named v<package-version> publish the npm package and attach a versioned .mcpb file to the GitHub Release.