Sign In

@techsnif/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@techsnif/mcp-server

MCP server for TechSnif — access tech news articles from AI assistants like Claude Desktop and Cursor.

Source
npmnpm
Version
1.0.7
Version published
Weekly downloads
343
1459.09%
Maintainers
1
Weekly downloads
 
Created
Source

@techsnif/mcp-server

MCP server for TechSnif — access tech news articles from AI assistants like Claude Desktop, Cursor, and any MCP-compatible client.

What it does

This server gives your AI assistant access to TechSnif's tech news feed. It can:

  • Get latest articles — optionally filtered by category (AI, Startups, Venture, Robotics) or tag (Crypto, Space, EVs, etc.)
  • Read full articles — get the complete text of any article
  • Get trending stories — see what's hot in the last 48 hours
  • Search articles — find articles by keyword

Setup

Claude Desktop

Add this to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

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

Cursor

Add this to .cursor/mcp.json in your project (or globally):

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

Other MCP clients

Run the server directly:

npx @techsnif/mcp-server

The server uses stdio transport, compatible with any MCP client.

Available tools

ToolDescription
get_latest_articlesGet latest articles with optional category/tag filters
get_articleGet full article content by slug
get_trending_articlesGet trending articles from the last 48 hours
search_articlesSearch articles by keyword

Available resources

ResourceDescription
techsnif://categoriesList of all categories with descriptions
techsnif://tagsList of all tags with descriptions

Example prompts

Once connected, try asking your AI assistant:

  • "What's the latest AI news on TechSnif?"
  • "Search TechSnif for articles about OpenAI"
  • "What's trending in tech right now?"
  • "Get me the full article about [topic]"
  • "Summarize the latest robotics news from TechSnif"

Configuration

Set TECHSNIF_API_URL to override the default API base URL (defaults to https://api.techsnif.com).

Set TECHSNIF_SITE_URL if you also want article and category links to point somewhere other than the main site (defaults to https://techsnif.com):

{
  "mcpServers": {
    "techsnif": {
      "command": "npx",
      "args": ["-y", "@techsnif/mcp-server"],
      "env": {
        "TECHSNIF_API_URL": "http://localhost:4321",
        "TECHSNIF_SITE_URL": "http://localhost:4321"
      }
    }
  }
}

License

MIT

Keywords

mcp

FAQs

Package last updated on 16 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts