varta-mcp

varta-mcp

Spam classification MCP server for AI agents that classifies messages as SPAM, SUSPICIOUS, or SAFE based on real Telegram moderation data and multi-layer detection.

Category
Visit Server

README

varta-mcp

Spam classification MCP server for AI agents — built from real Telegram moderation data.

Live at: https://mcp.getvarta.com/sse
Get a free API key: https://isitaspam.com/developers

Tools

Tool Description
check_spam_text Classify a message as SPAM / SUSPICIOUS / SAFE. Returns verdict, confidence (0–1), category, risk signals, red flags, and plain-language recommendation.
get_spam_stats Daily spam classification statistics from isitaspam.com.
get_spam_examples Five most recent public spam catches with links to full analysis.

Add to Claude Code

claude mcp add varta \
  --transport sse \
  https://mcp.getvarta.com/sse \
  --header "Authorization: Bearer varta_YOUR_KEY"

Get a free key (50 checks/day) at https://isitaspam.com/developers — instant, no credit card.

Example

curl -s -X POST https://mcp.getvarta.com/messages \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer varta_YOUR_KEY" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "check_spam_text",
      "arguments": {
        "text": "Earn $5000/week from home! Click: bit.ly/abc123"
      }
    }
  }'

Response:

**Verdict: SPAM** (97% confidence)
**Category:** financial scam

**Why flagged:**
- Unrealistic income claim ($5000/week)
- Shortened URL hides real destination

**Recommended action:** Delete message and ban sender.

**Source:** isitaspam.com/check/financial_scam-earn-5000-week-a1b2c3d4

How it works

The classifier runs 7-layer detection:

  1. Fast pre-classifier (keyword + pattern signals)
  2. Multi-LLM consensus (GPT + Claude + Gemini) for ambiguous cases
  3. Vector similarity against 1,100+ verified scam patterns
  4. URL safety check (Google Safe Browsing + PhishTank)
  5. Crypto scam signal detection
  6. Language detection (33 languages)
  7. Stylometric analysis (urgency density, caps ratio, mixed-script patterns)

Data comes from 51 live Telegram groups protecting 29,000+ members via Varta — a Telegram anti-spam SaaS.

Endpoints

Endpoint Transport
GET https://mcp.getvarta.com/sse SSE (Claude Code --transport sse)
POST https://mcp.getvarta.com/mcp HTTP (--transport http)
GET https://mcp.getvarta.com/ Info / health check

Auth

Pass your API key as a Bearer token:

Authorization: Bearer varta_YOUR_KEY

Free tier: 50 checks/day
Paid tiers: 2,000/day ($19/mo) · 10,000/day ($49/mo) — see https://isitaspam.com/developers#pricing

Rate limits & errors

Rate limiting is applied by isitaspam.com. On 429, the error body includes reset_at and upgrade_url.

Code Meaning
invalid_api_key Bearer token not recognised
rate_limit_exceeded Daily or burst limit hit
text_too_long Message exceeds 5,000 chars

REST API

If you prefer REST over MCP, the same keys work on isitaspam.com/api/check via X-API-Key header. Full OpenAPI 3.1 spec: https://isitaspam.com/openapi.yaml

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured