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

chaingpt-mcp

v0.1.2

Published

Bring ChainGPT Capabilities into your AI Agent. Web3.

Readme

ChainGPT MCP

smithery badge

A Model Context Protocol (MCP) server that allows you to bring ChainGPT capabilities into your AI Agent.

Features

  • Get the latest crypto news
  • Get the latest crypto prices
  • Get the latest crypto market trends
  • Get the latest crypto market news

Setup

Installation

via Smithery

To install ChainGPT MCP Server for any MCP client automatically via Smithery:

npx -y @smithery/cli install @kohasummon/chaingpt-mcp --client claude

This adds the server to claude desktop config. Replace claude with the name of the client you are using. See the list of clients here.

Manual Installation

pnpm install -g @kohasummon/chaingpt-mcp

Configure Claude Desktop to recognize the ChainGPT MCP server

You can find claude_desktop_config.json inside the settings of Claude Desktop app:

Open the Claude Desktop app and enable Developer Mode from the top-left menu bar.

Once enabled, open Settings (also from the top-left menu bar) and navigate to the Developer Option, where you'll find the Edit Config button. Clicking it will open the claude_desktop_config.json file, allowing you to make the necessary edits.

OR (if you want to open claude_desktop_config.json from terminal)

For macOS:

code ~/Library/Application\ Support/Claude/claude_desktop_config.json

For Windows:

code %APPDATA%\Claude\claude_desktop_config.json

2. Add the ChainGPT MCP server configuration:

{
  "mcpServers": {
    "chaingpt": {
      "command": "npx",
      "args": ["/path/to/chaingpt-mcp/build/index.js"],
      "env": {
        "CHAINGPT_SECRET_KEY": "your-secret-key-here"
      },
      "toolCallTimeoutMillis": 120000
    }
  }
}

Replace your-secret-key-here with your actual ChainGPT secret key from app.chaingpt.org/apidashboard.

3. Restart Claude Desktop

For the changes to take effect:

  1. Completely quit Claude Desktop (not just close the window)
  2. Start Claude Desktop again
  3. Look for the 🔌 icon to verify the ChainGPT MCP server is connected

Troubleshooting

Common Issues

  1. Server Not Found

    • Verify the npm link is correctly set up
    • Check Claude Desktop configuration syntax
    • Ensure Node.js is properly installed
  2. API Key Issues

    • Confirm your CHAINGPT_SECRET_KEY is valid
    • Check the CHAINGPT_SECRET_KEY is correctly set in the Claude Desktop config
    • Verify no spaces or quotes around the API key
  3. Connection Issues

    • Restart Claude Desktop completely
    • Check Claude Desktop logs:
  4. Node.js should be minimum v18 (or higher)

    # macOS
    tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
    
    # Windows
    type "%APPDATA%\Claude\logs\mcp*.log"
  5. Tool Call Timeout

    • Set the tool call timeout to 120 seconds or higher
    • This can be changed in the claude_desktop_config.json file

Tools

| Tool Name | Description | Prompt | | -------------------- | --------------------------------------------------------------------------------- | -------------------------------------------------------- | | chaingpt_invoke_chat | Invoke a chat with ChainGPT AI and get a response based on the provided question. | Yesterday, I bought 0.001 ETH. How much is it worth now? | | chaingpt_get_news | Get the latest crypto news | What's the latest news in the crypto world? |

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Built with ❤️ by Joshua Omobola