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

@veroq/x-bridge

v1.0.1

Published

MCP bridge — verify X posts, get social sentiment, fact-check trending claims

Downloads

206

Readme

@veroq/x-bridge

MCP server that bridges X (Twitter) real-time social data with VeroQ Shield verification and entity sentiment.

Your AI agent can now fact-check X posts and gauge social sentiment — in one tool call.

Tools

| Tool | What it does | Cost | |------|-------------|------| | x_verify_post | Verify claims in a specific X post via Shield | 1 X + 1 VeroQ | | x_topic_sentiment | Social sentiment from X + VeroQ news sentiment | 1 X + 1 VeroQ | | x_verify_trending | Fact-check the most-shared posts on any topic | 1 X + N VeroQ | | x_entity_pulse | Full intel: X social + news + briefs + relationships | 1 X + 3 VeroQ | | x_search_verified | Search X with auto-verification of top result | 1 X + 1 VeroQ |

Quick Start

npm install @veroq/x-bridge
export VEROQ_API_KEY=your_key     # https://veroq.ai/settings
export X_BEARER_TOKEN=your_token  # https://developer.x.com
npx veroq-x-bridge

Use with Claude Desktop

{
  "mcpServers": {
    "veroq-x-bridge": {
      "command": "npx",
      "args": ["@veroq/x-bridge"],
      "env": {
        "VEROQ_API_KEY": "your_key",
        "X_BEARER_TOKEN": "your_token"
      }
    }
  }
}

Examples

Verify a post

"Verify this post: https://x.com/elonmusk/status/123456789"

Returns claim-level verdicts: which statements are supported, contradicted, or unverifiable — with evidence.

Social sentiment

"What's the social sentiment around NVIDIA right now?"

Returns X social sentiment (positive/negative/neutral distribution, bullish/bearish signals) cross-referenced with VeroQ news sentiment. Flags divergence between social and news.

Fact-check trending posts

"What are people saying about the Fed rate decision? Are they right?"

Searches X, ranks by engagement, verifies the top posts' claims via Shield. Separates fact from noise.

Full entity pulse

"Give me the full picture on Bitcoin"

Combines: X social sentiment + VeroQ news sentiment trend + latest verified briefs + entity relationships. Flags social/news divergence as a potential leading indicator.

How Sentiment Works

X Social Sentiment — lightweight keyword-based analysis (zero API cost). Runs on every post, aggregates into distribution + top bullish/bearish signals.

VeroQ News Sentiment — entity-level sentiment extracted from verified news briefs. 7d/30d/90d lookback with trend direction.

Divergence Detection — when X social says "bullish" but news says "declining", the bridge flags it. Social often leads news by 12-48 hours.

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | VEROQ_API_KEY | Yes | VeroQ API key | | X_BEARER_TOKEN | Yes | X API bearer token | | VEROQ_BASE_URL | No | Override VeroQ API URL (default: https://api.veroq.ai) |

License

MIT