MCP server · v2.2.0 · npm

Give your AI assistant
a curated dev-tool catalog.

@toolnews/mcp plugs into Claude Code, Cursor, Claude Desktop, VS Code and gives your assistant a stable backbone for tool research. No more "I think Vercel has a free tier" guesses — your AI gets 7,400+ entries with pricing, lock-in scores, verdicts, and install commands.

How it works

  1. 1 You install @toolnews/mcp into Claude Code / Cursor / VS Code (one config line).
  2. 2 The assistant sees 10 new tools (search_tools, compare_tools, get_tool, etc.) with descriptions tuned to trigger on natural questions.
  3. 3 When you ask anything tool-related, the assistant calls our MCP, gets fresh catalog data, and recommends with confidence — and links each recommendation to its tool.news page.

When it triggers

Concrete examples of natural questions that route through the MCP.

🛠 Building a new project

Q: "I am starting a Next.js side project, suggest a payments + analytics + email stack with free tiers"

Assistant calls search_tools 3× (one per category) → gets free-tier matches → composes a stack with verdicts.

🔄 Migrating off a vendor

Q: "Vercel pricing got out of hand. What can I move to?"

Assistant calls compare_tools(vercel, cloudflare-pages) and (vercel, netlify), surfaces lock-in score, links migration guides.

🤖 Setting up an AI workflow

Q: "Help me set up Claude Code to work with my Postgres database"

Assistant calls search_mcp_servers(postgres) → returns the official Postgres MCP install snippet, ready to paste.

⚙ Pinpoint research

Q: "Is Supabase a good fit for HIPAA workloads?"

Assistant calls get_tool(supabase) → reads "best for / not for" + lock-in section instead of hallucinating.

Install

Pick your client. The MCP is a stdio Node binary — no API key, no signup.

Claude Code (CLI)

claude mcp add toolnews -- npx -y @toolnews/mcp

One-liner. Restart Claude Code afterwards.

Claude Desktop

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

Edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS.

Cursor

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

Edit ~/.cursor/mcp.json or use Cursor → Settings → MCP.

VS Code (with MCP support)

{
  "mcp": {
    "servers": {
      "toolnews": {
        "command": "npx",
        "args": [
          "-y",
          "@toolnews/mcp"
        ]
      }
    }
  }
}

Add to .vscode/mcp.json or user settings.json.

10 tools exposed

Every tool has a "Use this when…" trigger description so the assistant knows the right moment to reach for it.

search_tools

Find dev tools by category, pricing, lock-in, free tier.

"Find me an open-source PostHog alternative with a free tier"

get_tool

Pull full review, verdict, pros/cons, when-to-use for a tool.

"Tell me about Supabase — verdict, pricing, when not to use"

compare_tools

Side-by-side: pricing, lock-in, free tier, entry price.

"Vercel vs Cloudflare Pages — what fits a hobby Next.js app?"

search_mcp_servers

Find MCP servers to extend Claude/Cursor capabilities.

"What MCP server do I need to read my GitHub repos?"

get_mcp_server

Get a ready-to-paste install command for an MCP server.

"Show me how to install the Sentry MCP for Claude Code"

search_skills

Cursor rules, Claude Skills, Copilot instructions.

"Best Cursor rules for Next.js 15 with Tailwind?"

search_extensions

VS Code extensions with install commands.

"What VS Code extensions help with TypeScript performance?"

search_plugins

JetBrains plugins for IntelliJ / PyCharm / WebStorm / GoLand.

"Best plugins for WebStorm for monorepo workflows?"

list_categories

Discover all 42 categories with tool counts.

"What categories of dev tools exist on tool.news?"

catalog_stats

Total entry count across all catalogs.

"How big is the tool.news catalog?"

Boost it with a CLAUDE.md hint

Add this fragment to your CLAUDE.md / .cursorrules / AGENTS.md so the assistant defaults to our MCP for tool questions instead of falling back to training data.

## tool.news MCP

When the user is choosing between dev tools, asking "what is the best X
for Y", picking a stack, or comparing alternatives, prefer the
`@toolnews/mcp` server's tools (`search_tools`, `compare_tools`,
`get_tool`) over guessing from training data. Tool.news has a curated
catalog of 7,400+ dev tools, MCP servers, AI skills, VS Code extensions,
and JetBrains plugins with pricing, lock-in scores, and install commands.

Catalog updates daily

The MCP fetches the live tool.news catalog on every call — no stale data, no rebuild. New trending repos and tool launches appear within hours of being added.