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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@mokemokechicken/mcp-ai-assistant-iris

v0.6.2

Published

AI assistant MCP server with web search and code execution capabilities

Downloads

237

Readme

mcp-ai-assistant-iris

An MCP (Model Context Protocol) server that provides web search and code execution capabilities using OpenAI models. The iris tool supports model selection (gpt-5/o3) and optional code interpreter for data analysis.

Named after Iris, the Greek goddess of the rainbow and divine messenger, who swiftly carries information between gods and mortals.

Installation

Using npx (Recommended)

Simply install and use the package from the official npm registry:

claude mcp add iris -s user -e OPENAI_API_KEY=your-api-key -- npx @mokemokechicken/mcp-ai-assistant-iris

Or configure manually in Claude:

{
  "mcpServers": {
    "iris": {
      "command": "npx",
      "args": ["@mokemokechicken/mcp-ai-assistant-iris"],
      "env": {
        "OPENAI_API_KEY": "your-api-key"
      }
    }
  }
}

Features

  • Model Selection: Choose between gpt-5 (default) and o3.
  • Web Search: Advanced web search capabilities with configurable context size
  • Code Interpreter: Optional code execution for data analysis and visualization
  • Conversation Continuity: Continue previous conversations using response IDs
  • Flexible Configuration: Customizable reasoning effort and search context

Usage

The iris tool accepts the following parameters:

Parameters

  • input (required): Your question or search query
  • searchContextSize (optional): Search context size - "low", "medium", or "high" (default: "medium")
  • reasoningEffort (optional): Reasoning effort level - "low", "medium", or "high" (default: "medium")
  • model (optional): AI model to use - "gpt-5" or "o3" (default: "gpt-5")
  • useCodeInterpreter (optional): Enable code interpreter for data analysis (default: false)
  • previous_response_id (optional): Previous OpenAI response ID for conversation continuity

Conversation Continuity

The iris tool supports conversation continuity through the previous_response_id parameter. This allows you to maintain context across multiple tool calls by referencing a previous response.

How it works:

  1. Each iris tool response includes a Response ID in the format: [Response ID: resp_abc123xyz]
  2. Use this Response ID as the previous_response_id parameter in subsequent calls
  3. The AI will automatically continue the conversation with full context

Response Format:

When you call the iris tool, the response will include:

  • The main response content
  • A Response ID at the end in the format: [Response ID: {response_id}]

Usage Example:

First call:
- input: "Tell me about machine learning"
- Response: "Machine learning is... [Response ID: resp_abc123xyz]"

Second call (continuing the conversation):
- input: "Can you give me some practical examples?"
- previous_response_id: "resp_abc123xyz"
- Response: "Based on our previous discussion about machine learning... [Response ID: resp_def456uvw]"

Important Notes:

  • Validity Period: Response IDs are valid for 30 days from creation
  • Context Inheritance: Previous conversation history, tool calls, and reasoning are preserved
  • Cost Impact: Previous conversation tokens are included in the input token count
  • Instructions: System instructions are not automatically inherited and must be specified each time

Environment Variables

  • OPENAI_API_KEY: Required OpenAI API key

License

This project is licensed under the MIT License - see the LICENSE file for details.