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

omnibridge-mcp

v1.0.8

Published

OmniBridge-MCP is a production-grade **Model Context Protocol (MCP)** server that unifies the developer's ecosystem. It acts as a sophisticated bridge connecting AI agents (Claude, ChatGPT, etc.) to **GitHub** and **Discord**, enabling "AI-native" workflo

Readme

🌉 OmniBridge-MCP

OmniBridge-MCP is a production-grade Model Context Protocol (MCP) server that unifies the developer's ecosystem. It acts as a sophisticated bridge connecting AI agents (Claude, ChatGPT, etc.) to GitHub and Discord, enabling "AI-native" workflows for modern development teams.


✨ Key Features

  • 44+ Specialized Tools: Automate the entire DevOps lifecycle, from repository creation to traffic analytics.
  • Persistent Audit Logging: Every AI-to-tool interaction is stored in a MySQL/MariaDB database, providing a searchable "Black Box" recorder for security and accountability.
  • Corporate Collaboration: Manage team access with dedicated tools for adding, removing, and auditing repository collaborators.
  • Deep Analytics: Expose "hidden" GitHub data like traffic views, clone counts, and contributor stats directly to AI agents.
  • Platform Synergy: Bridge the gap between code and communication by allowing AI to relay updates from GitHub to Discord instantly.
  • Self-Discovery Manifest: A dedicated list_available_tools manifest allows for easy auditing and discovery of the server's full capabilities.

🏛 Architectural Decision: Why MySQL?

Initially, this project considered SQLite for its simplicity. However, for a production-level MCP server handling concurrent tool calls, MySQL/MariaDB was chosen because:

  1. Concurrency: MySQL handles multiple write locks more efficiently during heavy parallel logging.
  2. Security: Supports the Principle of Least Privilege, separating database administration from application logic.
  3. Enterprise Ready: Provides a robust, persistent audit trail that survives server restarts and is scalable for large teams.

🛠 One-Minute Setup

1. Install MySQL

2. Prepare the Database

Log into your MySQL client (e.g., MySQL Workbench or CLI) and run:

CREATE DATABASE omnibridge_db;

⚙️ MCP Client Configuration

Add this to your MCP client configuration (e.g., claude_desktop_config.json):

{
  "mcpServers": {
    "omnibridge": {
      "command": "npx",
      "args": ["-y", "omnibridge-mcp@latest"],
      "env": {
        "GITHUB_PAT": "your_github_pat",
        "GITHUB_REPO_OWNER": "your_github_username",
        "DATABASE_HOST": "localhost",
        "DATABASE_PORT": "3306",
        "DATABASE_USER": "root",
        "DATABASE_PASSWORD": "your_password",
        "DATABASE_NAME": "omnibridge_db",
        "DATABASE_URL": "mysql://root:your_password@localhost:3306/omnibridge_db",
        "DISCORD_BOT_TOKEN": "your_discord_bot_token",
        "DISCORD_CHANNEL_ID": "your_discord_channel_id"
      }
    }
  }
}

🔑 Acquiring Credentials

To use OmniBridge-MCP, you will need to gather several keys and IDs. Follow these steps:

🐙 GitHub Personal Access Token (PAT)

  1. Navigate to GitHub Settings -> Developer settings -> Personal access tokens -> Tokens (classic).
  2. Click Generate new token (classic).
  3. Give it a descriptive name and select the following scopes:
    • repo (Full control of private repositories)
    • workflow (Update GitHub Action workflows)
    • admin:repo_hook (Full control of repository hooks)
    • user (Update your profile)
  4. Click Generate token and copy it immediately (you won't see it again).

💬 Discord Bot Token & Channel ID

A. Create a Discord Bot:

  1. Visit the Discord Developer Portal and click New Application.
  2. Name your application (e.g., "OmniBridge Bot").
  3. Go to the Bot tab and click Reset Token (or Copy) to secure your bot token.
  4. Scroll down to Privileged Gateway Intents and enable Guild Members Intent and Message Content Intent.
  5. Use the OAuth2 -> URL Generator to invite the bot to your server with Send Messages and View Channels permissions.

B. Get your Channel ID:

  1. Open Discord, go to User Settings -> Advanced and enable Developer Mode.
  2. Right-click the channel where you want the bot to post and select Copy Channel ID.

🧰 Full Tool Catalog (44 Tools)

🐙 Repository Management

  • create_repo: Creates a new public or private repository from scratch.
  • delete_repo: Permanently deletes a repository (use with caution).
  • update_repo_metadata: Allows renaming a repository or updating its description.
  • change_repo_visibility: Toggles a repository between 'public' and 'private' modes.
  • list_all_repos: Retrieves a list of all repository names owned by the authenticated user.
  • get_repo_details: Fetches full metadata, including clone URLs, size, and primary language.
  • fork_repo: Creates a personal fork of any public repository to your account.
  • star_repo: Adds the repository to the user's starred list.
  • unstar_repo: Removes the repository from the user's starred list.

👥 Collaborator & Team Management

  • add_collaborators: Invite developers to a repository with specific permissions (pull, push, admin, etc.).
  • remove_collaborators: Revoke repository access for a specific user.
  • list_collaborators: Audit all users with access to a repository, including their roles and permissions.

📝 Issue Tracking

  • create_issue: Opens a new issue with a title, detailed body, and optional labels/assignees.
  • close_issue: Marks an existing issue as closed.
  • update_issue: Allows editing the title, body, state, or labels of an existing issue.
  • list_all_issues: Fetches all issues in a repository with advanced filtering (state, labels, assignee).
  • get_issue_details: Retrieves the full conversation thread and status of a specific issue.
  • add_issue_comment: Appends a new comment to an existing issue discussion.

📈 Traffic & Analytics

  • get_repo_views: Returns detailed traffic data, including total views and unique visitors over time.
  • get_repo_clone_count: Tracks how many times the repository has been cloned (daily/weekly).
  • get_top_referrers: Identifies the websites (e.g., Google, Twitter) driving traffic to the repo.
  • get_top_paths: Lists the most frequently visited files and directories in the repository.
  • get_contributor_stats: Provides a breakdown of commits, additions, and deletions per contributor.
  • get_commit_activity: Displays the weekly "heartbeat" of the repository over the last year.

🌿 Branches & Pull Requests

  • create_branch: Generates a new git branch from a specified source branch (default: main).
  • delete_branch: Deletes a branch from the remote repository.
  • list_branches: Lists all branches available in the repository, including protection status.
  • get_branch: Fetches detailed information (SHA, protection) about a specific branch.
  • create_pull_request: Proposes code changes from one branch to another for review.
  • merge_pull_request: Merges an approved pull request into the base branch using specified merge methods.
  • close_pull_request: Closes a pull request without merging the changes.
  • list_pull_requests: Lists all open or closed pull requests for a repository with filtering.
  • get_pull_request: Retrieves detailed information about a specific PR.
  • add_pr_comment: Allows reviewers to post comments directly on a pull request discussion.

👤 User Profile & Social

  • get_my_profile: Fetches complete information about the current user's GitHub account.
  • get_user: Retrieves public information about any GitHub user by their username.
  • list_followers: Lists all GitHub users who follow the current user.
  • list_following: Lists all users that the current user is following.
  • list_notifications: Retrieves the latest activity notifications from the user's GitHub inbox.
  • mark_notification_read: Clears specific notifications by marking them as read.

💬 Discord Integration

  • send_discord_message: Sends a message to a pre-configured Discord channel and logs it locally.
  • list_recent_discord_messages: Fetches the history of messages sent via OmniBridge from the internal database.

🛡️ System & Audit

  • get_logging_data: Provides a searchable log of all AI-to-tool interactions stored in MySQL.
  • list_available_tools: A self-discovery manifest that provides a categorized overview of all server capabilities.

📄 License & Credits

Project Lead: Jasmeet Singh Core Stack: Node.js, TypeScript, Prisma V7, MySQL, Octokit, Discord.js.