varta-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@varta-mcpclassify this message: "Claim your prize now!""
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
| Classify a message as SPAM / SUSPICIOUS / SAFE. Returns verdict, confidence (0–1), category, risk signals, red flags, and plain-language recommendation. |
| Daily spam classification statistics from isitaspam.com. |
| Five most recent public spam catches with links to full analysis. |
Related MCP server: Straight Connect
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.
Run locally (stdio)
The hosted server above is the easiest path. If you'd rather run the server as a local process — or your MCP client only speaks stdio — use the bundled stdio entry point. Same three tools, no dependencies, Node 18+.
git clone https://github.com/DarynaFor/mcp-varta.git
cd mcp-varta
API_KEY=varta_YOUR_KEY node src/stdio.jsOr wire it into a client config:
{
"mcpServers": {
"varta": {
"command": "node",
"args": ["/path/to/mcp-varta/src/stdio.js"],
"env": { "API_KEY": "varta_YOUR_KEY" }
}
}
}initialize and tools/list work without a valid key, so registries and clients
can introspect the server before you have one.
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-a1b2c3d4How it works
The classifier runs 7-layer detection:
Fast pre-classifier (keyword + pattern signals)
Multi-LLM consensus (GPT + Claude + Gemini) for ambiguous cases
Vector similarity against 1,100+ verified scam patterns
URL safety check (Google Safe Browsing + PhishTank)
Crypto scam signal detection
Language detection (33 languages)
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 |
| SSE (Claude Code |
| HTTP ( |
| Info / health check |
Auth
Pass your API key as a Bearer token:
Authorization: Bearer varta_YOUR_KEYFree 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 |
| Bearer token not recognised |
| Daily or burst limit hit |
| 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceContent moderation and profanity detection MCP server with 19 tools, 24 language support, leetspeak/Unicode obfuscation detection, context-aware analysis, batch processing, and user tracking for AI-powered content safety.Last updated2454MIT
- Flicense-qualityDmaintenanceAn MCP server for communication service connectors that currently provides multi-account Telegram integration with granular tool access and security controls. It allows AI models to manage messages, chats, and media across various accounts through a flexible, extensible routing architecture.Last updated1
- Alicense-qualityDmaintenanceMCP server that connects AI assistants to your real Telegram account via User API (MTProto). Features default-deny ACL with per-chat permissions, message search, file sending, forwarding, media downloads, and rate limiting.Last updated1MIT
- Flicense-qualityCmaintenanceMCP server that enables AI agents to send messages, photos, polls, and receive replies via Telegram with persistence and rate limiting.Last updated52
Related MCP Connectors
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DarynaFor/mcp-varta'
If you have feedback or need assistance with the MCP directory API, please join our Discord server