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

@tubexperto/mcp-server

v1.1.0

Published

MCP Server for TubExperto - Connect your AI to YouTube experts

Readme

TubExperto MCP Server

Connect your AI to YouTube experts

NPM Version License

What is this?

The TubExperto MCP Server allows AI assistants (Claude Code, ChatGPT, Cursor, etc.) to query YouTube experts created on TubExperto.

How it works:

Your AI (Claude Code, etc.)
    ↓
MCP Server (this package)
    ↓
TubExperto API
    ↓
YouTube Expert (trained on entire channel)
    ↓
Personalized answer based on YOUR project context

Features

  • 🔌 Universal: Works with any tool supporting MCP (Model Context Protocol)
  • 🎯 Contextual: Experts understand YOUR specific project
  • 🧠 Specialized: Trained on entire YouTube channels
  • Fast: Responses in seconds using Gemini AI

Quick Start

1. Install

npm install -g @tubexperto/mcp-server

Or for local development:

git clone https://github.com/tubexperto/mcp-server
cd mcp-server
npm install
npm run build

2. Get API Key

  1. Create account at tubexperto.com
  2. Create at least one expert from a YouTube channel
  3. Get your API key from tubexperto.com/settings/api

3. Configure

Add to your AI tool's MCP configuration (e.g., Claude Code):

{
  "mcpServers": {
    "tubexperto": {
      "command": "node",
      "args": ["/path/to/mcp-server/dist/index.js"],
      "env": {
        "TUBEXPERTO_API_KEY": "texp_your_api_key_here",
        "TUBEXPERTO_API_URL": "https://tubexperto.com"
      }
    }
  }
}

4. Use

# In Claude Code:
"Query my marketing expert about how to promote my SaaS"

# The expert receives context about your project and provides personalized advice

Available Tools

list_experts

Search for experts by topic.

Input:

  • query (string): Search query (e.g., "marketing", "React")
  • limit (number, optional): Max results (default: 10)

Example:

"Find experts about Next.js"

query_expert

Ask a question to a specific expert.

Input:

  • expertId (string): Expert ID or slug
  • question (string): Your question
  • context (string, optional): Additional project context

Example:

"Ask my marketing expert: How should I launch on Product Hunt?"

get_expert_info

Get detailed information about an expert.

Input:

  • expertId (string): Expert ID or slug

Example:

"Show me info about my Next.js expert"

Pricing

| Plan | Price | Queries/Day | Features | |------|-------|-------------|----------| | Free | $0 | 10 | Basic access | | Pro | $19/mo | 1,000 | Private experts, priority | | Business | $49/mo | 5,000 | Teams, API, webhooks | | Enterprise | Custom | Unlimited | On-premise, SLA 99.99% |

See full pricing

Documentation

Supported AI Tools

  • ✅ Claude Code (Desktop & CLI)
  • ✅ Cursor
  • 🔜 ChatGPT Desktop (when MCP support is added)
  • ✅ Any tool supporting MCP protocol

Development

Build

npm run build

Watch mode

npm run dev

Test locally

# Set environment variables
export TUBEXPERTO_API_KEY="texp_your_key"
export TUBEXPERTO_API_URL="http://localhost:3001"

# Run the server
node dist/index.js

Contributing

Contributions are welcome! Please read CONTRIBUTING.md first.

Support

License

MIT © TubExperto


Made with ❤️ by the TubExperto team