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

claude-gpt-collabration

v1.0.0

Published

MCP server for GPT-5 interactive file reading and collaboration with Claude Code

Downloads

7

Readme

@mcp/enhanced-gpt5

npm version License: MIT

MCP server for GPT-5 interactive file reading and collaboration with Claude Code.

Features

🤖 GPT-5 Integration - Direct access to OpenAI's GPT-5 API 📁 File Collaboration - GPT-5 can read and analyze project files 🔄 Multi-turn Conversations - Support for complex interactive workflows 🛠️ Multiple Tools - Various collaboration modes for different use cases

Installation

npm install @mcp/enhanced-gpt5

Prerequisites

  • Node.js: Version 20 or higher
  • OpenAI API Key: Access to GPT-5 models

Configuration

Environment Variables

Set your OpenAI API key:

export OPENAI_API_KEY=sk-your-api-key-here

Or create a .env file:

OPENAI_API_KEY=sk-your-api-key-here
GPT5_DEBUG=false
NODE_ENV=production

Claude Code Integration

Add to your Claude Code MCP configuration (~/.claude/mcp_config.json):

{
  "mcpServers": {
    "enhanced-gpt5": {
      "command": "node",
      "args": ["node_modules/@mcp/enhanced-gpt5/build/index.js"],
      "env": {
        "OPENAI_API_KEY": "sk-your-api-key-here"
      }
    }
  }
}

Or use the command line:

claude mcp add enhanced-gpt5 "node node_modules/@mcp/enhanced-gpt5/build/index.js"

Available Tools

Core Tools

  1. echo - Test connectivity and echo back text
  2. gpt5_generate - Generate text using GPT-5 with customizable parameters
  3. gpt5_collaborate - Collaborate with GPT-5 with file system access
  4. gpt5_collaborate_with_files - Advanced file collaboration with proactive file uploads
  5. gpt5_collaborate_basic - Basic collaboration using content injection

Usage Examples

Basic Text Generation

// In Claude Code
"Use the enhanced-gpt5 gpt5_generate tool to explain quantum computing"

File Collaboration

// In Claude Code
"Use gpt5_collaborate to analyze this TypeScript project and suggest improvements"

Specific File Analysis

// In Claude Code
"Use gpt5_collaborate_with_files to analyze the main index.ts file and explain its architecture"

Tool Parameters

gpt5_generate

  • input (required): The prompt text
  • model: GPT model variant (default: "gpt-5-chat-latest")
  • instructions: System instructions
  • reasoning_effort: "low" | "medium" | "high" (default: "medium")
  • max_output_tokens: Maximum tokens to generate (default: 512)

gpt5_collaborate

  • root (required): Project root path
  • task (required): What you want GPT-5 to do
  • model: Model to use (default: "gpt-5")
  • instructions: Additional system instructions
  • max_rounds: Maximum collaboration rounds (default: 4)

Development

Building from Source

git clone <repository-url>
cd servers/enhanced-gpt5
npm install
npm run build

Running Tests

npm test

Debug Mode

Enable debug logging:

GPT5_DEBUG=true
NODE_ENV=development

Troubleshooting

Common Issues

  1. Server won't start: Check Node.js version (needs 20+)
  2. Authentication errors: Verify your OpenAI API key is set correctly
  3. Tool not recognized: Restart Claude Code after adding the MCP server

Getting Help

  • Check the GitHub Issues
  • Review the debug logs when GPT5_DEBUG=true

License

MIT © Enhanced MCP Framework

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Changelog

1.0.0

  • Initial release
  • GPT-5 text generation
  • File collaboration tools
  • Multi-turn conversation support
  • MCP protocol compliance