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

@tensorfeed/mcp-server

v1.10.0

Published

MCP server for TensorFeed.ai - AI news, status, model data, and premium endpoints (routing, cost projection, forecast, history series, news search, webhook watches with digest tier, enriched directory) for AI agents

Downloads

306

Readme

TensorFeed MCP Server

A Model Context Protocol server that gives AI agents access to real-time AI industry data and premium endpoints from TensorFeed.ai.

Free Tools

| Tool | Description | |------|-------------| | get_ai_news | Latest AI news from 15+ sources (filterable by category) | | get_ai_status | Real-time status of Claude, OpenAI, Gemini, Mistral, and more | | is_service_down | Check if a specific AI service is down | | get_model_pricing | Compare pricing across all major AI model providers | | get_ai_today | Summary of top AI stories from the last 24 hours | | get_agent_activity | Live AI bot traffic on TensorFeed.ai with top-bot breakdown | | mcp_registry_snapshot | Today's summary of the official MCP server registry: total servers, top namespaces, newly added/reactivated/deprecated names |

Premium Tools (paid in USDC on Base)

These tools require a TENSORFEED_TOKEN env var. Buy credits at tensorfeed.ai/developers/agent-payments and pass the returned tf_live_... token to your MCP client.

| Tool | Cost | Description | |------|------|-------------| | get_account_balance | Free | Show credits remaining on the configured token | | get_account_usage | Free | Per-endpoint usage history for the configured token | | premium_routing | 1 credit | Top-N ranked AI model recommendations with full score breakdown | | pricing_series | 1 credit | Daily price points for one model with min/max/delta summary | | benchmark_series | 1 credit | Score evolution for a benchmark on one model | | status_uptime | 1 credit | Daily uptime % for one provider with incident-day list | | premium_agents_directory | 1 credit | Enriched agents catalog with live status, news, traffic, trending_score | | news_search | 1 credit | Full-text news search with date/provider/category filters and relevance scoring | | cost_projection | 1 credit | Project workload cost across 1-10 AI models with 4 time horizons and cheapest-monthly ranking | | provider_deepdive | 1 credit | One provider's full profile: status, all models with benchmarks joined, recent news, traffic | | compare_models | 1 credit | Side-by-side comparison of 2-5 models with normalized benchmarks and rankings | | whats_new | 1 credit | Agent morning brief: pricing changes, incidents, top news from last 1-7 days | | mcp_registry_series | 1 credit | Multi-day MCP registry growth and churn series, 90-day max range | | list_watches | Free | List active webhook watches owned by the token | | create_price_watch | 1 credit | Register a webhook watch on a model price change | | create_status_watch | 1 credit | Register a webhook watch on a service status transition | | create_digest_watch | 1 credit | Register a daily/weekly digest webhook (pricing-changes summary, set-and-forget) | | delete_watch | Free | Remove an active watch |

Setup with Claude Code

Add to your Claude Code MCP config (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "tensorfeed": {
      "command": "npx",
      "args": ["-y", "@tensorfeed/mcp-server"]
    }
  }
}

To enable premium tools, add the env block:

{
  "mcpServers": {
    "tensorfeed": {
      "command": "npx",
      "args": ["-y", "@tensorfeed/mcp-server"],
      "env": {
        "TENSORFEED_TOKEN": "tf_live_..."
      }
    }
  }
}

Setup with Claude Desktop

Add to Claude Desktop settings (same shape as above).

Run Locally

npx @tensorfeed/mcp-server
# or with a token for premium endpoints
TENSORFEED_TOKEN=tf_live_... npx @tensorfeed/mcp-server

Example Queries

Free tier:

  • "What's happening in AI today?"
  • "Is Claude down right now?"
  • "Compare pricing between Claude Opus and GPT-4o"
  • "Show me the latest AI research papers"
  • "What's the status of all AI services?"

Premium tier (with TENSORFEED_TOKEN set):

  • "Recommend the best AI model for code under $5 per million tokens"
  • "Show the price history of Claude Opus 4.7 over the last 30 days"
  • "What's Anthropic's uptime this month?"
  • "Compare model pricing between April 1 and today"
  • "Set up a webhook to my server when Claude goes down"
  • "What's my credit balance?"

Pricing

Premium tools cost 1 credit per call. Credits are 50 per $1 USDC at base rate, with volume discounts at $5 (10%), $30 (25%), and $200 (40%). See tensorfeed.ai/developers/agent-payments for the full payment flow and trust attestation.

No refunds: all credit purchases are final per Section 17.5 of the Terms. Credits do not expire and are jointly redeemable on tensorfeed.ai and terminalfeed.io, so the safe pattern is to buy small ($1 USDC for 50 credits) and top up as call volume is calibrated. Premium access is unavailable in OFAC-sanctioned jurisdictions; see Section 17.9.

Data Source

All data comes from the TensorFeed.ai API, which aggregates from 15+ sources including Anthropic, OpenAI, Google AI, TechCrunch, The Verge, arXiv, Hacker News, and more. Updated every 10 minutes.

License

MIT - Built by TensorFeed.ai